comparison setup.py @ 478:5d5a6832c4ec

cm: Separate install dependencies from virtual environment requirements.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 15 Oct 2018 20:30:52 -0700
parents 10a82dec3fe4
children 0bfd648aca6a
comparison
equal deleted inserted replaced
477:71c9259de019 478:5d5a6832c4ec
6 def read(fname): 6 def read(fname):
7 with open(os.path.join(os.path.dirname(__file__), fname)) as fp: 7 with open(os.path.join(os.path.dirname(__file__), fname)) as fp:
8 return fp.read() 8 return fp.read()
9 9
10 10
11 install_requires = read('requirements.txt').splitlines() 11 install_requires = [
12 tests_require = read('dev-requirements.txt').splitlines() 12 'Flask>=0.12.2',
13 'Flask-Bcrypt>=0.7.1',
14 'Flask-Login>=0.2.10',
15 'Jinja2>=2.10',
16 'Markdown>=3',
17 'Pygments>=2.2.0',
18 'SQLAlchemy>=1.2.0',
19 'Whoosh>=2.7.4',
20 'colorama>=0.3.9',
21 'python-hglib>=1.8',
22 'repoze.lru>=0.6'
23 ]
24 tests_require = [
25 'invoke>=0.22.0'
26 'pytest>=3.3.1'
27 ]
13 28
14 29
15 setup( 30 setup(
16 name='Wikked', 31 name='Wikked',
17 description=("A wiki engine entirely managed with text files " 32 description=("A wiki engine entirely managed with text files "