Skip to content

Commit

Permalink
Merge 1d7a19d into 110f71d
Browse files Browse the repository at this point in the history
  • Loading branch information
sedrubal committed Nov 10, 2016
2 parents 110f71d + 1d7a19d commit e608172
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions setup.py 100644 → 100755
@@ -1,19 +1,21 @@
#!/usr/bin/env python
# Copyright (c) Aaron Gallagher <_@habnab.it>
# See COPYING for details.

import io
from setuptools import setup


with open('README.rst', 'rb') as infile:
long_description = infile.read()
with io.open('README.rst', mode='r', encoding='utf8') as infile:
LONG_DESCRIPTION = infile.read()

with open('requirements.txt', 'rb') as infile:
install_requires = infile.read().split()
with io.open('requirements.txt', mode='r', encoding='utf8') as infile:
INSTALL_REQUIRES = infile.read().split()

setup(
name='txsocksx',
description='Twisted client endpoints for SOCKS{4,4a,5}',
long_description=long_description,
long_description=LONG_DESCRIPTION,
author='Aaron Gallagher',
author_email='_@habnab.it',
url='https://github.com/habnabit/txsocksx',
Expand All @@ -34,6 +36,6 @@
vcversioner={
'version_module_paths': ['txsocksx/_version.py'],
},
install_requires=install_requires,
install_requires=INSTALL_REQUIRES,
packages=['txsocksx', 'txsocksx.test'],
)

0 comments on commit e608172

Please sign in to comment.