Skip to content

Commit 84f851b

Browse files
committed
Added setup and readme
1 parent bedc2e9 commit 84f851b

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# Tensify
2+
3+
An easy to use pytho package to convert your tenses...

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="tensify",
8+
version="0.0.1",
9+
author="Dev Shah",
10+
author_email="[email protected]",
11+
description="A python package which converts your tenses",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/CodeRustyPro/Tensify",
15+
packages=setuptools.find_packages(),
16+
classifiers=(
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: MIT License",
19+
"Operating System :: OS Independent",
20+
),
21+
)

0 commit comments

Comments
 (0)