-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 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
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
name = "conduit-morepath"
description = "Morepath Conduit implementation"
version = "0.0.1"
setup(
name=name,
version=version,
description=description,
author="Henri Hulski",
author_email="[email protected]",
license="MIT",
url="https://github.com/yacoma/morepath-realworld-example-app",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[
"more.cerberus",
"more.jwtauth",
"more.pony",
"more.cors",
"argon2_cffi",
"gunicorn",
"pyyaml",
"awesome-slugify",
],
extras_require=dict(
test=[
"pytest >= 2.9.1",
"pytest-remove-stale-bytecode",
"pytest-env",
"WebTest >= 2.0.14",
],
pep8=["flake8", "black"],
coverage=["pytest-cov"],
production=["psycopg2"],
),
entry_points=dict(morepath=["scan = conduit"]),
classifiers=[
"License :: OSI Approved :: MIT License" "Intended Audience :: Developers",
"Environment :: Web Environment",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)