-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.21 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
from setuptools import setup, find_packages
import phoopy.http
long_description = open('README.rst', 'r').read()
setup(
name='phoopy-http',
version=phoopy.http.__version__,
packages=find_packages(),
package_data={
'phoopy.http.http_bundle': ['config/*.yml'],
},
setup_requires=['wheel'],
install_requires=[
'CherryPy>=18.1.0',
'Flask>=1.0.0',
'Paste>=3.2.0',
],
description="Http library for phoopy framework",
long_description=long_description,
url='https://github.com/phoopy/phoopy-http',
author='Phoopy',
author_email='[email protected]',
license='MIT',
classifiers=[
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)