forked from wheerd/multiset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (44 loc) · 1.15 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
[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 :: 2,
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
home-page = https://github.com/wheerd/multiset
repository = https://github.com/wheerd/multiset
documentation = https://multiset.readthedocs.io/
author = Manuel Krebber
author-email = [email protected]
readme = file: README.rst
[options]
zip_safe = True
include_package_data = True
setup_requires =
setuptools >= 42
setuptools_scm
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*
py_modules = 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