forked from dado3212/python-dartmouthbanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 842 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
from setuptools import setup
long_description="""This API allows Python programs to easily interact with Dartmouth Banner."""
setup(
name='python-dartmouthbanner',
version='1.1',
description='Python API for interacting with Dartmouth Banner',
url='https://github.com/dado3212/python-dartmouthbanner',
author='Alex Beals',
author_email='Alex.Beals.18@dartmouth.edu',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
keywords='api dartmouth banner',
packages=['dartmouthbanner'],
long_description=long_description,
install_requires=['requests', 'urllib', 'shutil', 'Pillow']
)