equal
deleted
inserted
replaced
15 |
15 |
16 """ |
16 """ |
17 This module contains pyams_utils package |
17 This module contains pyams_utils package |
18 """ |
18 """ |
19 import os |
19 import os |
20 from setuptools import setup, find_packages |
20 |
|
21 from setuptools import find_packages, setup |
|
22 |
21 |
23 |
22 DOCS = os.path.join(os.path.dirname(__file__), |
24 DOCS = os.path.join(os.path.dirname(__file__), |
23 'docs') |
25 'docs') |
24 |
26 |
25 README = os.path.join(DOCS, 'README.txt') |
27 README = os.path.join(DOCS, 'README.txt') |
26 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
28 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
27 |
29 |
28 version = '0.1.15' |
30 version = '0.1.16' |
29 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
31 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
30 |
32 |
31 tests_require = [] |
33 tests_require = [] |
32 |
34 |
33 setup(name='pyams_i18n', |
35 setup(name='pyams_i18n', |