-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.22 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools >= 62.2.0",
"wheel >= 0.37.0",
]
build-backend = 'setuptools.build_meta'
[project]
name = "django_informixdb"
description = "A database driver for Django to connect to an Informix db via ODBC"
keywords = [
"django",
"informix",
]
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
dynamic = ["version", "readme"]
dependencies = [
"django >= 3.2.0, < 5",
"pyodbc >= 4.0.0, < 5"
]
[optional-dependencies]
dev = ['check-manifest']
all =['%(test)s']
test = ['coverage']
[[project.authors]]
name = "Reecetech"
email = "opensource@reecetech.com.au"
[project.urls]
Homepage = "https://github.com/reecetech/django_informixdb"
Repository = "https://github.com/reecetech/django_informixdb"
[project.license]
text = "APLv2"
[tool.setuptools.dynamic]
version = {attr = "django_informixdb.VERSION"}
readme = {file = "README.rst"}
[tool.distutils.bdist_wheel]
universal = true