-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
51 lines (48 loc) · 1.41 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from pyrate import __version__
REQUIREMENTS = (
'requests',
'requests-oauthlib',
'six'
)
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Communications',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
setup(
name='pyrate',
version=__version__,
description='Pyrate is a python wrapper for restful web apis. It\'s like magic but simpler.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Kim Thoenen',
author_email='[email protected]',
url='https://github.com/chive/pyrate',
packages=find_packages(),
license='MIT',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
include_package_data=True,
zip_safe=False,
test_suite='pyrate.tests',
install_requires=REQUIREMENTS,
tests_require=(
'httmock',
),
entry_points={
'console_scripts': [
'pyratetools = pyrate.scripts.cliutils:main',
]
},)