forked from aohan237/asyncnsq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (48 loc) · 1.76 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os.path
import re
import sys
from setuptools import find_packages, setup
install_requires = ['aiohttp']
assert sys.version_info >= (3, 5), 'asyncnsq requires Python 3.5 or later'
def read(*parts):
path = os.path.abspath(__file__)
dir_path = os.path.dirname(path)
with open(os.path.join(dir_path, *parts), 'rt') as f:
return f.read().strip()
def read_version():
regexp = re.compile(r"^__version__\W*=\W*'([\d.abrc]+)'")
init_py = os.path.join(os.path.dirname(__file__),
'asyncnsq', '__init__.py')
with open(init_py) as f:
for line in f:
match = regexp.match(line)
if match is not None:
return match.group(1)
raise RuntimeError('Cannot find version in asyncnsq/__init__.py')
classifiers = [
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
]
setup(name='asyncnsq',
version=read_version(),
description=("asyncio async/await nsq support"),
long_description=read('README.md'),
classifiers=classifiers,
platforms=["POSIX"],
author="aohan237",
author_email="aohan237@gmail.com",
url="https://github.com/aohan237/asyncnsq",
license="MIT",
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
extras_require={"snappy": ["python-snappy"]},
include_package_data=True)