-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
53 lines (44 loc) · 1.33 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
46
47
48
49
50
51
52
53
"""
more.mako
-----
Mako template bindings for Morepath.
"""
from setuptools import setup, find_packages
version = "0.2.0.dev0"
long_description = "\n".join(
(
open("README.md", encoding="utf-8").read(),
open("CHANGES", encoding="utf-8").read(),
)
)
install_requires = ["morepath", "mako"]
tests_require = ["pytest", "coverage", "pytest-cov", "webtest"]
docs_require = ["sphinx", "docutils"]
setup(
name="more.mako",
version=version,
url="https://github.com/morepath/more.mako",
license="BSD",
author="Blaise Laflamme",
author_email="[email protected]",
description="Mako template bindings for Morepath",
long_description=long_description,
keywords="morepath mako",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
namespace_packages=["more"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=install_requires,
tests_require=tests_require,
extras_require={"test": tests_require, "docs": docs_require},
test_suite="more.mako",
)