-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 877 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 877 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
from setuptools import setup
from _version import version
setup(
name='caaspp',
version=version,
description="An unofficial API for CAASPP websites.",
url="https://github.com/GitPushPullLegs/caaspp",
author="Joe Aguilar",
author_email="Jose.Aguilar.6694@gmail.com",
license="GNU General Public License",
packages=["caaspp"],
install_requires=["requests", "lxml"],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)