-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (48 loc) · 1.69 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
from setuptools import setup
with open('README.md', 'r') as f:
README = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='banidb',
version='0.5.0',
license='Open Software License 3.0 (OSL-3.0)',
description='Python Package for Sikh Gurbani - BaniDB API',
long_description=README,
long_description_content_type='text/markdown',
author='Khalis Foundation',
url='https://github.com/KhalisFoundation/banidb-api-python',
keywords=[
'BaniDB',
'SikhiToTheMax',
'Gurbani',
'KhalisFoundation',
'Sikh',
'Guru Granth Sahib',
'API',
'Amrit Keertan',
'Sundar Gutka'
],
install_requires=required,
author_email='python@khalis.info',
download_url='https://github.com/KhalisFoundation/banidb-api-python/archive/refs/tags/v_0.2.tar.gz',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Religion',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Open Software License 3.0 (OSL-3.0)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=['banidb'],
include_package_data=True,
project_urls={
'Source': 'https://github.com/KhalisFoundation/banidb-api-python',
'Issues': 'https://git.io/JG4II',
'Documentation':'https://banidbpy.readthedocs.io/'
},
)