-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (53 loc) · 1.97 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
def readme():
with open(r"README.md") as f:
README = f.read()
return README
with open("requirements.txt", "r") as f:
requirements = f.read()
setup(
name="pygita",
packages=find_packages(),
version="2.0.0",
license="MIT",
description="""pygita is a wrapper
of bhagavadgita.io api for Python 3""",
author="Shubhendra Kushwaha",
author_email="shubhendrakushwaha94@gmail.com",
url="https://github.com/TheShubhendra/pygita",
keywords=[
"Gita",
"ShrimadBhagwatGita",
"Verse",
"Literature",
"Mythology",
"Hinduism",
],
install_requires=requirements,
include_package_data=True,
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Religion",
"Topic :: Software Development :: Build Tools",
"Topic :: Religion",
"Topic :: Sociology :: History",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"License :: Free For Educational Use",
"License :: Free For Home Use",
"Natural Language :: English",
"Natural Language :: Hindi",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.0",
)