-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
51 lines (44 loc) · 1.19 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
"""
flask_protorpc
--------------
An extremely thin Flask Extension to build remote clients.
`````
"""
from setuptools import setup
with open("requirements.txt", "r") as f:
requires = f.readlines()
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='flask-protorpc',
version='1.0.0',
url='http://github.com/gregorynicholas/flask-protorpc',
license='MIT',
author='gregorynicholas',
author_email='[email protected]',
description=__doc__,
long_description=long_description,
py_modules=[
'flask_protorpc',
'flask_protorpc_tests',
'testutils',
],
zip_safe=False,
platforms='any',
install_requires=requires,
dependency_links=[
'https://github.com/gregorynicholas/google-protorpc/tarball/master',
],
test_suite='flask_protorpc_tests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)