We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bedc2e9 commit 84f851bCopy full SHA for 84f851b
README.md
@@ -1 +1,3 @@
1
# Tensify
2
+
3
+An easy to use pytho package to convert your tenses...
setup.py
@@ -0,0 +1,21 @@
+import setuptools
+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