-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
executable file
·108 lines (91 loc) · 2.68 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[metadata]
## Setuptools specific information
name = software_patterns
version = 2.0.0
description = Software Design Patterns with types in Python.
long_description = file: README.rst
long_description_content_type = text/x-rst
license = AGPLv3
license_files = LICENSE
platforms = All
author = Konstantinos Lampridis
author_email = k.lampridis@hotmail.com
# represents the web home page of the project
url = https://github.com/boromir674/software_patterns
download_url = https://github.com/boromir674/software_patterns/archive/v1.2.1.tar.gz
## PyPi specific information
project_urls =
Documentation = https://software-patterns.readthedocs.io/
Bug Tracker = https://github.com/boromir674/software-patterns/issues
Source Code = https://github.com/boromir674/software-patterns
keywords = software design patterns, design patterns, software patterns, python library
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Affero General Public License v3
Natural Language :: English
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Documentation :: Sphinx
Topic :: Scientific/Engineering
Topic :: Software Development
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Software Distribution
Topic :: Utilities
Typing :: Typed
[options]
zip_safe = False
include_package_data = True
package_dir=
=src
packages = find:
tests_require = pytest
[options.packages.find]
where=src
[options.package_data]
software_patterns =
py.typed
#### SUPORT TOOLS CONFIG
[flake8]
max_line_length = 120
exclude = .tox,venv,env,env-dev
[tools:pytest]
python_files = tests/test_*.py tests/* */test_*.py
[isort]
line_length = 120
skip = .tox,venv,env,env-dev
default_section = THIRDPARTY
known_first_party = src,tests
[semantic_release]
version_variable = src/software_patterns/__init__.py:__version__
# version_source=tag
version_source=source
upload_to_pypi=false
upload_to_release=false
[check-manifest]
ignore =
CHANGELOG.rst
docs/*
docs/patterns-implementations/*
docs/static/*
requirements/*
scripts/*.py
tox.ini
.bettercodehub.yml
.circleci/config.yml
.coveragerc
.DS_Store
.gitignore
.prospector.yml
.pylintrc
.readthedocs.yml
.scrutinizer.yml
.travis.yml