-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (31 loc) · 849 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
#!/usr/bin/env python
# coding: utf-8
import os
from setuptools import setup
requirements = []
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,
long_description_content_type='text/x-rst',
url='http://github.com/amyangfei/GorMW',
author='Yang Fei',
author_email='[email protected]',
maintainer='Yang Fei',
maintainer_email='[email protected]',
keywords=['GoReplay Middleware'],
license='MIT',
packages=["gor"],
include_package_data=True,
install_requires=requirements,
test_suite='nose.collector',
tests_require=[
'nose',
]
)