-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·96 lines (86 loc) · 3.05 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import io
from os import path
import setuptools
here = path.abspath(path.dirname(__file__))
def _read(*names, **kwargs):
return io.open(
path.join(here, *names), encoding=kwargs.get("encoding", "utf8")
).read()
long_description = _read("README.md")
requirements = [
"questionary ~= 1.5.1",
"confuse ~= 1.3.0",
"docker ~= 4.2.2",
"compas_mobile_robot_reloc >=1.0.2, <1.1.0",
# compas_fab and compas_rrc last since they might fail on building pybullet
"compas_fab == 0.15.0",
"compas_rrc == 1.0.0",
]
extras_require = {
"dev": [
"black >= 20.8b1",
"doc8",
"flake8",
"invoke >= 1.4.1",
"isort >= 5.6.4",
"mypy >= 0.790",
"pydocstyle",
"pytest >= 3.2",
"recommonmark >=0.6",
"setuptools_scm[toml] >= 4.1.2",
"sphinx_compas_theme >= 0.11.4",
"sphinx >=3.3.1",
"sphinx-autodoc-typehints[type_comments] >= 1.11",
]
}
setuptools.setup(
name="rapid_clay_formations_fab",
description="Fabrication code for Rapid Clay Formations.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gramaziokohler.github.io/rapid_clay_formations_fab",
author="Gramazio Kohler Research",
maintainer="Anton Tetov",
maintainer_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: IronPython",
],
keywords=["architecture", "engineering", "fabrication", "construction"],
project_urls={
"Repository": "https://github.com/gramaziokohler/rapid_clay_formations_fab",
"Issues": "https://github.com/gramaziokohler/rapid_clay_formations_fab/issues",
"Documentation": "https://gramaziokohler.github.io/rapid_clay_formations_fab",
},
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
use_scm_version={"fallback_version": "dev"},
setup_requires=["setuptools_scm"],
install_requires=requirements,
extras_require=extras_require,
python_requires=">=3.7", # usage in IronPython is supported, see note in README
obsoletes=["compas_rcf"],
# TODO: Add tool commands from fab_data
entry_points={
"console_scripts": ["rcf = rapid_clay_formations_fab._cmd_entrypoint:main"]
},
)