-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (49 loc) · 1.58 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
"""Settings for building package."""
from setuptools import setup
from sda_orchestrator import __author__, __title__, __version__
setup(
name=__title__,
version=__version__,
url="",
project_urls={
"Source": "",
},
license="Apache 2.0",
author=__author__,
author_email="",
description="SDA orchestrator",
long_description="",
packages=["sda_orchestrator", "sda_orchestrator/utils", "sda_orchestrator/schemas", "sda_orchestrator/config"],
# If any package contains *.json, include them:
package_data={
"": [
"schemas/*.json",
"config/*.json",
]
},
entry_points={
"console_scripts": [
"sdainbox=sda_orchestrator.inbox_consume:main",
"sdaverified=sda_orchestrator.verified_consume:main",
"sdacomplete=sda_orchestrator.complete_consume:main",
]
},
platforms="any",
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
# Pick your license as you wish
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
],
install_requires=["amqpstorm", "jsonschema", "httpx", "shortuuid"],
extras_require={
"test": ["coverage", "coveralls", "pytest", "pytest-cov", "tox"],
},
)