-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
53 lines (49 loc) · 1.39 KB
/
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
[metadata]
name = psqlgraph
description = postgresql graph library
long_description = file: README.md
long_description_content_type = text/markdown
author = Gdc feature team
author_email = [email protected]
maintainer = GDC Feature Team
maintainer_email = [email protected]
license = Apache Software License 2.0
license_files = LICENSE
url = https://github.com/NCI-GDC/psqlgraph
keywords = psqlgraph, sqlalchemy, Genomic Data Commons, graph databases
classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: Unix
Operating System :: POSIX :: Linux
Topic :: Internet
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Development Status :: 5 - Production/Stable
[options]
zip_safe = True
packages = find:
package_dir =
=src
python_requires = >=3.7
include_package_data = True
install_requires =
psycopg2
sqlalchemy>=1.3,<1.4
xlocal
rstr
[options.packages.find]
where = src
[options.extras_require]
dev =
coverage[toml]
pytest
pytest-cov>=2.7.1
lint =
mypy
pre-commit
psqlgraph_test_utils =