-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
52 lines (45 loc) · 1.16 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
[metadata]
name = multiset
description = An implementation of a multiset.
long_description = file: README.rst
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
home_page = https://github.com/wheerd/multiset
repository = https://github.com/wheerd/multiset
documentation = https://multiset.readthedocs.io/
author = Manuel Krebber
author_email = admin@wheerd.de
readme = file: README.rst
[options]
zip_safe = True
include_package_data = True
setup_requires =
setuptools >= 46
setuptools_scm
python_requires = >= 3.8
packages = multiset
test_suite = tests
[options.package_data]
multiset = *.pyi, py.typed
[flake8]
max-line-length = 120
[pep8]
max-line-length = 120
[yapf]
based_on_style = pep8
column_limit = 120
[aliases]
test=pytest
[bdist_wheel]
universal=1