Mercurial > wikked
view setup.py @ 416:a11a7afb53a7
web: Fix random failures in the search preview drop-down.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 20 Mar 2017 23:22:00 -0700 |
parents | a78a4b20b720 |
children | 10a82dec3fe4 |
line wrap: on
line source
import os import os.path from setuptools import setup, find_packages def read(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as fp: return fp.read() install_requires = read('requirements.txt').splitlines() tests_require = read('dev-requirements.txt').splitlines() setup( name='Wikked', description=("A wiki engine entirely managed with text files " "stored in a revision control system."), author='Ludovic Chabant', author_email='ludovic@chabant.com', url="https://github.com/ludovicchabant/Wikked", license="Apache 2.0", keywords="wiki mercurial hg git", packages=find_packages(exclude=["tests"]), setup_requires=['setuptools_scm'], use_scm_version={ 'write_to': 'wikked/__version__.py'}, install_requires=install_requires, tests_require=tests_require, include_package_data=True, zip_safe=False, classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: Apache Software License', 'Environment :: Console', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Unix', 'Operating System :: POSIX', 'Operating System :: Microsoft :: Windows', 'Programming Language :: Python'], entry_points={ 'console_scripts': [ 'wk = wikked.witch:real_main'] }, )