-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (38 loc) · 1.29 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
from setuptools import setup, find_packages
long_description = (
open("README.rst", encoding="utf-8").read()
+ "\n\n"
+ open("CHANGES.rst", encoding="utf-8").read()
)
version = "0.4.dev0"
setup(
name="more.cors",
version=version,
description="CORS support for Morepath",
long_description=long_description,
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",
],
keywords="morepath CORS",
author="Izhar Firdaus",
author_email="[email protected]",
url="http://github.com/kagesenshi/more.cors",
license="BSD",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
namespace_packages=["more"],
zip_safe=False,
install_requires=["setuptools", "morepath >= 0.19"],
entry_points={"morepath": ["scan = more.cors"]},
extras_require=dict(
test=["pytest", "pytest-remove-stale-bytecode", "webtest"],
coverage=["pytest-cov"],
pep8=["flake8", "black"],
),
)