-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 994 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
36
37
38
39
from setuptools import setup, find_packages
version = '1.0b31'
install_requires = [
'setuptools',
'rfxcom',
'asyncio_redis',
'iso8601',
'tzlocal',
'aiomysql',
'aiohttp==0.22.5',
'aiohttp-jinja2==0.8.0'
]
test_requires = [
'nose',
'asynctest',
]
setup(name='domopyc',
version=version,
description="Asychronous python utilities for domotic applications",
author='Bruno Thomas',
author_email='[email protected]',
url='http://github.com/bamthomas/DomoPyc',
license='LICENSE',
packages=find_packages(exclude=("*.tests", "*.tests.*", "tests.*", "tests", "*.test_utils")),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=test_requires,
test_suite="nose.collector",
entry_points = {
'console_scripts': [
'domopyc = domopyc.domopyc_main:run_application'
]
}
)