-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
44 lines (41 loc) · 1.18 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
[metadata]
author = Danilo Horta
author_email = horta@ebi.ac.uk
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
description = Quick-start for Python packages
download_url = https://github.com/horta/pystart
keywords = quick start, package, setup, python
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Danilo Horta
platforms = OS Independent, Windows, MacOS, POSIX, POSIX :: Linux
maintainer_email = horta@ebi.ac.uk
name = pystart
setup_requires = pytest-runner
url = https://github.com/horta/pystart
version = attr: pystart.__version__
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
inquirer>=2.2.0
validate_email>=1.3
setuptools>=38.4.0
callable-pip>=1.0.0
semantic_version>=2.6.0
setup_requires =
pytest-runner>=3.0
[aliases]
test = pytest
[tool:pytest]
addopts = -x --pep8 --doctest-modules --doctest-glob='*.rst'
norecursedirs = .eggs .git *.egg-info build
pep8ignore = E402 E501