-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1011 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
import setuptools
import os.path
import nsq
_APP_PATH = os.path.dirname(nsq.__file__)
with open(os.path.join(_APP_PATH, 'resources', 'README.rst')) as f:
long_description = f.read()
with open(os.path.join(_APP_PATH, 'resources', 'requirements.txt')) as f:
install_requires = list(map(lambda s: s.strip(), f.readlines()))
setuptools.setup(
name='nsqs',
version=nsq.__version__,
description="A complete, gevent-based, non-Tornado NSQ client.",
long_description=long_description,
classifiers=[],
keywords='',
author='Dustin Oprea',
author_email='[email protected]',
url='https://github.com/dsoprea/NsqSpinner',
license='GPL 2',
packages=setuptools.find_packages(exclude=['dev']),
include_package_data=True,
zip_safe=False,
# install_requires=install_requires,
package_data={
'nsq': ['resources/README.rst',
'resources/requirements.txt'],
},
scripts=[
],
)