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