-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
40 lines (35 loc) · 928 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from __future__ import absolute_import
from setuptools import find_packages
from setuptools import setup
test_requirements = [
"pytest",
"isort>=5.0.0",
]
setup(
# metadata see setup.cfg
packages=find_packages(include=["plonecli"]),
entry_points={"console_scripts": ["plonecli=plonecli.cli:cli"]},
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"setuptools",
"Click>=7.0",
"click-aliases",
"mr.bob",
"bobtemplates.plone>=6.0b15",
"tox",
],
extras_require={
"test": test_requirements,
"dev": ["tox", "zest.releaser[recommended]"],
},
zip_safe=False,
keywords="plonecli",
scripts=["plonecli_autocomplete.sh"],
test_suite="tests",
tests_require=test_requirements,
setup_requires=["pytest-runner"],
)