-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
39 lines (33 loc) · 1.14 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
# Copyright (c) Aaron Gallagher <[email protected]>
# See COPYING for details.
from setuptools import setup
with open('README.rst', 'rb') as infile:
long_description = infile.read()
with open('requirements.txt', 'rb') as infile:
install_requires = infile.read().split()
setup(
name='txsocksx',
description='Twisted client endpoints for SOCKS{4,4a,5}',
long_description=long_description,
author='Aaron Gallagher',
author_email='[email protected]',
url='https://github.com/habnabit/txsocksx',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet',
],
license='ISC',
setup_requires=['vcversioner>=1'],
vcversioner={
'version_module_paths': ['txsocksx/_version.py'],
},
install_requires=install_requires,
packages=['txsocksx', 'txsocksx.test'],
)