-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (32 loc) · 1.1 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
import os
from setuptools import setup, find_packages
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="txswagger",
version="0.1.dev",
packages=find_packages(exclude=("tests.*", "tests")),
author="The OpenNode Team",
author_email="[email protected]",
maintainer="Ihor Kaharlichenko",
maintainer_email="[email protected]",
description="Swagger Core library and Twisted Web integration",
long_description=read('README.rst'),
license="Apache2",
url="https://github.com/opennode/txswagger",
install_requires=[
'twisted>=11.0',
],
test_suite='tests',
classifiers=[
"Development Status :: 1 - Planning",
"Framework :: Twisted",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: System :: Networking",
],
)