-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
58 lines (54 loc) · 1.46 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
54
55
56
57
58
[metadata]
name = cythonpackage
description = Compile a package in one .so file and remove source code
description_file = README.md
description_content_type = text/markdown ; charset=UTF-8
author = Philippe PRADOS
author_email = [email protected]
maintener = Philippe PRADOS
maintener_email = [email protected]
contact = cythonpackage
contact_email = [email protected]
license = Apache-2.0
home_page = https://github.com/pprados/cythonpackage
project_urls =
Bug Tracker = https://github.com/pprados/cythonpackage/issues
Documentation = https://github.com/pprados/cythonpackage/
Source Code = https://github.com/pprados/cythonpackage/
classifier =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries :: Python Modules
keywords =
cython
[options]
packages = cythonpackage
zip_safe = true
python_requires= >=3.6
setup_requires =
setuptools>=42
[entry_points]
distutils.setup_keywords =
cythonpackage = cythonpackage:cythonpackage
[files]
packages =
cythonpackage
[extras]
dev =
cibuildwheel
twine
gitflow
pypiserver
build =
setuptools>=42
cython
poetry =
poetry-core>=1.0.0
setuptools>=42
cython