-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (24 loc) · 908 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name="UMass Toolkit",
version="0.0.1",
author="Simon Andrews",
author_email="[email protected]",
description="Unofficial tools for interacting with various UMass APIs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/simon-andrews/umass-toolkit",
packages=setuptools.find_packages(),
install_requires=['requests', 'beautifulsoup4', 'pint'],
classifiers=(
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
)
)