-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
56 lines (48 loc) · 957 Bytes
/
setup.cfg
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
53
54
55
56
##########################
# Setup.py Configuration #
##########################
[metadata]
name = tccm-api
version = 0.1.5
description = TCCM rest api
long_description = file: README.rst
# URLs associated with the project
url = https://github.com/hot-ecosystem/tccm-api
# Author information
author = Dazhi Jiao
author_email = [email protected]
maintainer = Dazhi Jiao
maintainer_email = [email protected]
# License Information
license = CC0
license_file = LICENSE
[options]
install_requires =
aiofiles
biolinkml
fastapi
neo4j
owlready2
pandas
prefixcommons
pydantic
pyld
python-docx
python-dotenv
python-multipart
rdflib
rdflib-pyld-compat
rfc3986
uvicorn
[files]
# Problem with subpackages not being included here?
packages =
tccm_api
tccm_loader
;packages=find:
;[options.packages.find]
;where=.
# Random options
zip_safe = false
include_package_data = True
python_requires = >=3.8