forked from jeremyswitzer/appfigures-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 803 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 803 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
26
27
from setuptools import setup
'''The setup and build script for the appfigures library.'''
__author__ = 'jeremy.switzer@gmail.com'
__version__ = '1.0RC'
setup(
name = "appfigures",
version = __version__,
author='Jeremy Switzer',
author_email=__author__,
description='A Python wrapper around the AppFigures API',
license='MIT',
url='https://github.com/jeremyswitzer/appfigures-api',
keywords='appfigures',
packages=['appfigures'],
install_requires = ['requests'],
tests_require = ['mock'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2 :: Only'
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
],
)