-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (43 loc) · 1.4 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name="morepath_wiki",
version="0.2.dev0",
description=(
"A wiki demo for Morepath, based on the "
"web micro-framework battle by Richard Jones"
),
long_description=(
open("README.rst", encoding="utf-8").read()
+ "\n\n"
+ open("CHANGES.rst", encoding="utf-8").read()
),
author="Morepath developers",
author_email="[email protected]",
license="BSD",
url="https://github.com/morepath/morepath_wiki",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
keywords="morepath demo",
install_requires=[
"morepath>=0.14,==0.*",
# 'html', This library has been bundled within the source code.
],
extras_require=dict(
test=["pytest >= 2.9.0", "webtest", "pytest-remove-stale-bytecode"],
coverage=["pytest-cov"],
),
entry_points={
"console_scripts": ["morepath_wiki = morepath_wiki.__main__:run"]
},
classifiers=[
"Intended Audience :: Developers",
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)