-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 815 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 815 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='gitam',
version="0.3.1",
description='Useful tools to extract data from GITAM University websites.',
long_description_content_type="text/markdown",
long_description=README,
license='MIT',
packages=find_packages(),
author='Rohit Ganji',
author_email='grohit.2001@gmail.com',
keywords=['GITAM', 'GITAM University', 'Gandhi Institute of Technology and Management'],
url='https://github.com/rohitganji/gitam',
download_url='https://pypi.org/project/gitam/'
)
install_requires = [
'requests',
'bs4',
'pandas',
'matplotlib',
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)