-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
53 lines (49 loc) · 1.53 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
[metadata]
name = pyprobs
description = A module that returns True or False output based on given probability
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/OmerFI/PyProbs
author = Ömer Furkan İşleyen
author_email = [email protected]
license = MIT
license_files = LICENSE
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 3
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
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries
Topic :: Utilities
keywords = probability, chance
project_urls =
Source=https://github.com/OmerFI/PyProbs
Documentation=https://pyprobs.readthedocs.io
Bug Tracker=https://github.com/OmerFI/PyProbs/issues
[options]
packages = find:
python_requires = >=3.6
package_dir =
=src
zip_safe = False
[options.packages.find]
where = src
[options.extras_require]
testing =
pytest>=6.2.0
tox>=3.26.0
docs =
Sphinx>=5.2.1
sphinx-rtd-theme>=1.0.0
# TODO: Add extra requirements for linting, docs, etc. as needed