forked from sathiiii/pera-transcript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.45 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
from setuptools import setup
with open("README.md", 'r') as f:
desc = f.read()
setup(
name='pera-transcript',
version='0.2.0',
description='A tool to generate the unofficial transcript automatically for undergraduate students at University of Peradeniya.',
long_description=desc,
long_description_content_type='text/markdown',
url='https://github.com/sathiiii/pera-transcript',
author='Sathira Silva',
author_email='sathirasofte@gmail.com',
license='MIT License',
packages=['pera_transcript'],
install_requires=['pyyaml',
'bs4',
'requests',
'argparse'
],
entry_points={
'console_scripts': ['autogen_transcript=pera_transcript.autogen_transcript:main']
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)