forked from edualgo/eduAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 992 Bytes
/
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
from setuptools import setup
# reading long description from file
with open('README.md', encoding='utf-8') as file:
long_description = file.read()
# specify requirements of your package here
REQUIREMENTS = ['requests', 'tabulate']
# some more details
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Topic :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
]
# calling the setup function
setup(name='eduAlgo',
version='1.1.6.3',
description='An educational Algorithmic Library',
long_description=long_description,
long_description_content_type = 'text/markdown',
url='https://github.com/Abhijit2505/eduAlgo',
author='Abhijit Tripathy',
author_email='[email protected]',
license='MIT',
packages=['edualgo'],
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords='algorithms'
)