-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.19 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
from setuptools import setup, find_packages
long_description = (
open("README.rst", encoding="utf-8").read()
+ "\n\n"
+ open("CHANGES.rst", encoding="utf-8").read()
)
setup(
name="more.jsonschema",
version="0.3.dev0",
description="JSON Schema support for Morepath",
long_description=long_description,
author="Henri Hulski",
author_email="[email protected]",
keywords="morepath validation",
license="BSD",
url="https://github.com/morepath/more.jsonschema",
namespace_packages=["more"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: PyPy",
],
install_requires=["morepath >= 0.19", "jsonschema >= 3.2.0"],
extras_require=dict(
test=["pytest >= 2.9.1", "pytest-remove-stale-bytecode", "webtest"],
coverage=["pytest-cov"],
),
)