Mercurial > wikked
comparison setup.py @ 360:a78a4b20b720 0.6.0
Update requirements for `setuptools`.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 20 Sep 2015 19:19:31 -0700 |
parents | 0698b546e278 |
children | 10a82dec3fe4 |
comparison
equal
deleted
inserted
replaced
359:90926c17779c | 360:a78a4b20b720 |
---|---|
4 | 4 |
5 | 5 |
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 | |
10 | |
11 install_requires = read('requirements.txt').splitlines() | |
12 tests_require = read('dev-requirements.txt').splitlines() | |
9 | 13 |
10 | 14 |
11 setup( | 15 setup( |
12 name='Wikked', | 16 name='Wikked', |
13 description=("A wiki engine entirely managed with text files " | 17 description=("A wiki engine entirely managed with text files " |
19 keywords="wiki mercurial hg git", | 23 keywords="wiki mercurial hg git", |
20 packages=find_packages(exclude=["tests"]), | 24 packages=find_packages(exclude=["tests"]), |
21 setup_requires=['setuptools_scm'], | 25 setup_requires=['setuptools_scm'], |
22 use_scm_version={ | 26 use_scm_version={ |
23 'write_to': 'wikked/__version__.py'}, | 27 'write_to': 'wikked/__version__.py'}, |
24 install_requires=[ | 28 install_requires=install_requires, |
25 'Flask==0.10.1', | 29 tests_require=tests_require, |
26 'Flask-Bcrypt==0.5.2', | |
27 'Flask-Login==0.2.10', | |
28 'Flask-Script==0.5.1', | |
29 'Jinja2==2.7.2', | |
30 'Markdown==2.2.1', | |
31 'Pygments==1.6', | |
32 'SQLAlchemy==0.9.3', | |
33 'Whoosh==2.5.5', | |
34 'colorama==0.2.7', | |
35 'py-bcrypt==0.4', | |
36 'pysqlite==2.6.3', | |
37 'pytest==2.5.2', | |
38 'repoze.lru==0.6', | |
39 'python-hglib'], | |
40 include_package_data=True, | 30 include_package_data=True, |
41 zip_safe=False, | 31 zip_safe=False, |
42 classifiers=[ | 32 classifiers=[ |
43 'Development Status :: 3 - Alpha', | 33 'Development Status :: 3 - Alpha', |
44 'License :: OSI Approved :: Apache Software License', | 34 'License :: OSI Approved :: Apache Software License', |