-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (34 loc) · 1.01 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
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown
description = embed tor into your application
author = Pascal Eberlein
author_email = [email protected]
url = https://github.com/nbdy/onionpp
license = MIT
classifiers =
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
Programming Language :: C++
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: MIT License
Programming Language :: C++
Topic :: Software Development :: Libraries :: Python Modules
keywords =
embed
tor
project_urls =
Github = https://github.com/nbdy/onionpp
[options]
python_requires = >=3.10
zip_safe = False
include_package_data = True
[flake8]
max-line-length = 120
show_source = True
exclude = .git, __pycache__, build, dist, docs, tools, venv
extend-ignore = E203, E722, B950
select = C,E,F,N,W,B,B9