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