-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
50 lines (45 loc) · 1.26 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
[metadata]
name = seq_dbutils
version = file: seq_dbutils/_version.txt
author = Laura Thomson
author_email = [email protected]
home_page = https://github.com/BDI-pathogens/seq_dbutils
description = A package of MySQL database utilities
license = MIT
license_files = LICENSE
platform = any
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
long_description = file: README.md
long_description_content_type = text/markdown
[options]
include_package_data = true
python_requires = >=3.9, <3.13
packages = seq_dbutils
test_suite = tests
setup_requires =
setuptools
install_requires =
cryptography ~=43.0.1
mysql-connector-python ~=8.1.0
pandas ~=2.1.1
SQLAlchemy ~=2.0.22
[sdist]
formats = gztar
[bdist_wheel]
universal = 1
[coverage:run]
branch = True
source = seq_dbutils
[flake8]
max-line-length = 127
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/