-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
73 lines (69 loc) · 2.67 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup, find_packages
# Version info -- read without importing
_locals = {}
with open("invocations/_version.py") as fp:
exec(fp.read(), None, _locals)
version = _locals["__version__"]
requirements = [
# Core dependency
"invoke>=1.7.2",
# Dependencies for various subpackages.
# NOTE: these used to be all optional (only complained about at import
# time if missing), but that got hairy fast, and these are all
# pure-Python packages, so it shouldn't be a huge burden for users to
# obtain them.
"blessings>=1.6",
"releases>=1.6",
"semantic_version>=2.4,<2.7",
"tabulate>=0.7.5",
"tqdm>=4.8.1",
"twine>=1.15",
"wheel>=0.24.0",
]
setup(
name="invocations",
version=version,
description="Common/best-practice Invoke tasks and collections",
long_description=open("README.rst").read(),
license="BSD",
author="Jeff Forcier",
author_email="[email protected]",
url="https://invocations.readthedocs.io",
project_urls={
"Source": "https://github.com/pyinvoke/invocations",
"Changelog": "https://invocations.readthedocs.io/en/latest/changelog.html", # noqa
"CI": "https://app.circleci.com/pipelines/github/pyinvoke/invocations",
"Issues": "https://github.com/pyinvoke/invocations/issues",
},
# Release requirements. See dev-requirements.txt for dev version reqs.
python_requires=">=3.6",
install_requires=requirements,
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"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 :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration",
],
)