-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.33 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (41 loc) · 1.33 KB
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
import os
import sys
import re
from setuptools import setup, find_packages
# reading version (same way sqlalchemy does)
with open(os.path.join(os.path.dirname(__file__), 'easyq', '__init__.py')) as v_file:
package_version = re.compile(r'.*__version__ = \'(.*?)\'', re.S).match(v_file.read()).group(1)
dependencies = [
'pymlconf >= 1',
'argcomplete'
]
setup(
name='easyq',
version=package_version,
author='Vahid Mardani',
author_email='vahid.mardani@gmail.com',
url='http://github.com/pylover/easyq',
description='Simple and easy message queue tcp server',
packages=find_packages(),
platforms=['any'],
install_requires=dependencies,
entry_points={
'console_scripts': [
'easyq = easyq.cli:main'
]
},
test_suite='easyq.tests',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Home Automation',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Networking :: Monitoring',
'Topic :: System :: Networking :: Monitoring :: Hardware Watchdog',
'Topic :: Terminals :: Telnet',
],
)