forked from AWegnerGitHub/stackapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.15 KB
/
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
27
28
29
30
31
32
33
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name='StackAPI',
description='Library for interacting with the Stack Exchange API',
long_description=long_description,
url='https://github.com/AWegnerGitHub/StackAPI',
author='Andrew Wegner',
author_email='[email protected]',
maintainer='Andrew Wegner',
maintainer_email='[email protected]',
license='MIT',
keywords='stackexchange',
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'test']),
version='0.2.0',
install_requires=['requests', 'six'],
tests_require=['mock'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='tests'
)