-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
50 lines (47 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Install containment."""
from setuptools import find_packages
from setuptools import setup
common_requires = ["rcli >= 0.4.0, < 0.5"]
setup(
name="containment",
author="Za Wilgustus",
author_email="[email protected]",
license="MIT",
url="https://github.com/contains-io/containment.git",
use_scm_version=True,
packages=find_packages(exclude=["tests", "docs"]),
install_requires=[
"jinja2 >= 2.8, < 3",
"typet >= 0.3.3, < 0.4",
"docker >= 3.3.0, < 3.4",
]
+ common_requires,
extras_require={
"dev": [
"black",
"flake8",
"mypy",
"pre-commit",
"pydocstyle",
"pylint",
"pytest",
"tox",
]
},
setup_requires=["pytest-runner", "setuptools_scm"] + common_requires,
tests_require=["pytest >= 3, < 4"],
autodetect_commands=True,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Topic :: Utilities",
],
)