-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (39 loc) · 1.05 KB
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
from setuptools import setup, find_packages
# Package metadata
NAME = 'igrade'
VERSION = '2.7.0'
DESCRIPTION = 'An unofficial wrapper for iGradePlus Student Management Systems.'
URL = 'https://github.com/Kasherpete/Igrade-web-scraper'
AUTHOR = 'Keagan Peterson'
AUTHOR_EMAIL = 'Keagan.a.peterson@outlook.com'
LICENSE = 'MIT'
LICENSE_URL = 'https://opensource.org/licenses/MIT'
# Package dependencies
INSTALL_REQUIRES = [
'aiohttp>=3.0.0',
'requests>=2.0.0',
'beautifulsoup4>=4.0.0',
'colorama>=0.2.0',
'lxml>=4.0.0',
]
# Additional classifiers
CLASSIFIERS = [
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
]
# Package setup
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
classifiers=CLASSIFIERS,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
)