equal
deleted
inserted
replaced
11 # |
11 # |
12 |
12 |
13 """ |
13 """ |
14 This module contains pyams_notify_ws package |
14 This module contains pyams_notify_ws package |
15 """ |
15 """ |
|
16 |
16 import os |
17 import os |
17 from setuptools import setup, find_packages |
18 from setuptools import setup, find_packages |
18 |
19 |
19 DOCS = os.path.join(os.path.dirname(__file__), |
20 DOCS = os.path.join(os.path.dirname(__file__), |
20 'docs') |
21 'docs') |
21 |
22 |
22 README = os.path.join(DOCS, 'README.txt') |
23 README = os.path.join(DOCS, 'README.txt') |
23 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
24 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
24 |
25 |
25 version = '0.1.4' |
26 version = '0.2.0' |
26 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
27 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
27 |
28 |
28 tests_require = [] |
29 tests_require = [] |
29 |
30 |
30 setup(name='pyams_notify_ws', |
31 setup(name='pyams_notify_ws', |
56 extras_require=dict(test=tests_require), |
57 extras_require=dict(test=tests_require), |
57 install_requires=[ |
58 install_requires=[ |
58 'setuptools', |
59 'setuptools', |
59 # -*- Extra requirements: -*- |
60 # -*- Extra requirements: -*- |
60 'aiopyramid', |
61 'aiopyramid', |
61 'pyams-cache', |
62 'pyams_cache', |
62 'pyramid', |
63 'pyramid', |
63 'zope.interface' |
64 'zope.interface' |
64 ], |
65 ], |
65 entry_points=""" |
66 entry_points=""" |
66 # -*- Entry points: -*- |
67 # -*- Entry points: -*- |