forked from amyangfei/GorMW
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (33 loc) · 937 Bytes
/
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
#!/usr/bin/env python
# coding: utf-8
import os
from setuptools import setup
requirements = [
'tornado >= 4.5.2',
'prometheus_client >= 0.0.21'
]
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
long_description = f.read()
f.close()
__version__ = ""
exec(open('gor/version.py').read())
setup(
name='gor',
version=__version__,
description='Python library for GoReplay Middleware',
long_description=long_description,
url='http://github.com/GiovanniPaoloGibilisco/GorMW',
author='Giovanni Paolo Gibilisco',
author_email='[email protected]',
maintainer='Giovanni Paolo Gibilisco',
maintainer_email='[email protected]',
keywords=['GoReplay Python Middleware'],
license='Apache2',
packages=["gor"],
include_package_data=True,
install_requires=requirements,
test_suite='nose.collector',
tests_require=[
'nose',
]
)