-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 842 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 842 Bytes
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
"""Package up cidc_api/models.py for use in other services."""
from setuptools import setup
with open("requirements.modules.txt") as f:
requirements = f.read().splitlines()
with open("README.md") as f:
long_description = f.read()
from cidc_api import __version__
setup(
name="cidc_api_modules",
description="SQLAlchemy data models and configuration tools used in the CIDC API",
python_requires=">=3.6",
install_requires=requirements,
license="MIT license",
packages=[
"cidc_api.config",
"cidc_api.csms",
"cidc_api.models",
"cidc_api.shared",
"cidc_api.models.files",
],
url="https://github.com/CIMAC-CIDC/cidc_api-gae",
long_description=long_description,
long_description_content_type="text/markdown",
version=__version__,
zip_safe=False,
)