-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (46 loc) · 1.49 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 find_packages
from setuptools import setup
try:
README = open("README.md").read() + "\n\n" + open("CHANGELOG.md").read()
except IOError:
README = None
setup(
name="guillotina_batch",
version="6.0.1.dev0",
description="batch endpoint for guillotina",
long_description=README,
long_description_content_type="text/markdown",
install_requires=["guillotina>=6.0.0b5", "backoff"],
author="Nathan Van Gheem",
author_email="[email protected]",
url="https://github.com/guillotinaweb/guillotina_batch",
packages=find_packages(exclude=["demo"]),
package_data={"": ["*.txt", "*.rst"], "guillotina_batch": ["py.typed"]},
include_package_data=True,
license="BSD",
extras_require={
"test": [
"pytest>=4.1.1",
"aiohttp>=3.6.0,<4.0.0",
"docker",
"backoff",
"jsonschema==2.6.0",
"psycopg2-binary",
"pytest-asyncio==0.10.0",
"pytest-cov",
"coverage==4.4.0",
"pytest-docker-fixtures",
"asyncpg==0.15.0",
"async_asgi_testclient==1.4.4",
]
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Intended Audience :: Developers",
],
entry_points={},
)