-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
282 lines (228 loc) · 8.26 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pathlib import Path
from typing import List, Sequence, Union
def python_version_check(major: int = 3, minor: int = 7):
import sys
assert sys.version_info.major == major and sys.version_info.minor >= minor, (
f"This project is utilises language features only present Python {major}.{minor} and greater. "
f"You are running {sys.version_info}."
)
python_version_check()
import os
def read_reqs(file: str, path: Path) -> List[str]:
""""""
def readlines_ignore_comments(f):
""""""
return [a_ for a_ in f.readlines() if "#" not in a_ and a_]
def recursive_flatten_ignore_str(seq: Sequence) -> Sequence:
""""""
if not seq: # is empty Sequence
return seq
if isinstance(seq[0], str):
return seq
if isinstance(seq[0], Sequence):
return (
*recursive_flatten_ignore_str(seq[0]),
*recursive_flatten_ignore_str(seq[1:]),
)
return (*seq[:1], *recursive_flatten_ignore_str(seq[1:]))
def unroll_nested_reqs(req_str: str, base_path: Path):
""""""
if req_str.startswith("-r"):
with open(base_path / req_str.strip("-r").strip()) as f:
return [
unroll_nested_reqs(req.strip(), base_path)
for req in readlines_ignore_comments(f)
]
else:
return (req_str,)
requirements_group = []
with open(str(path / file)) as f:
requirements = readlines_ignore_comments(f)
for requirement in requirements:
requirements_group.extend(
recursive_flatten_ignore_str(
unroll_nested_reqs(requirement.strip(), path)
)
)
req_set = set(requirements_group)
req_set.discard("")
return list(req_set)
import re
from setuptools import find_packages
with open(
Path(os.path.dirname(__file__)) / "neodroid" / "__init__.py", "r"
) as project_init_file:
str_reg_exp = "['\"]([^'\"]*)['\"]"
content = project_init_file.read() # get strings from module
version = re.search(rf"__version__ = {str_reg_exp}", content, re.M).group(1)
project_name = re.search(rf"__project__ = {str_reg_exp}", content, re.M).group(1)
author = re.search(rf"__author__ = {str_reg_exp}", content, re.M).group(1)
__author__ = author
__all__ = ["NeodroidPackage"]
class NeodroidPackageMeta(type):
@property
def test_dependencies(self) -> list:
return read_reqs(
"requirements_tests.txt", Path(__file__).parent / "requirements"
)
@property
def setup_dependencies(self) -> list:
return read_reqs(
"requirements_setup.txt", Path(__file__).parent / "requirements"
)
@property
def package_name(self) -> str:
return project_name
@property
def url(self) -> str:
return "https://github.com/sintefneodroid/neo"
@property
def download_url(self):
return self.url + "/releases"
@property
def readme_type(self):
return "text/markdown"
@property
def packages(self) -> List[Union[bytes, str]]:
return find_packages(
exclude=[
# 'Path/To/Exclude'
]
)
@property
def author_name(self) -> str:
return author
@property
def author_email(self) -> str:
return "christian.heider@alexandra.dk"
@property
def maintainer_name(self) -> str:
return self.author_name
@property
def maintainer_email(self) -> str:
return self.author_email
@property
def package_data(self) -> dict:
# data = glob.glob('environments/mab/**', recursive=True)
emds = [str(p) for p in Path(__file__).parent.rglob(".md")]
return {
"neodroid": [
*emds
# *data
# 'environments/mab/**',
# 'environments/mab/**_Data/*',
# 'environments/mab/windows/*'
# 'environments/mab/windows/*_Data/*'
]
}
@property
def entry_points(self) -> dict:
return {
"console_scripts": [
# "name_of_executable = module.with:function_to_execute"
"neodroid = neodroid.entry_points.cli:main",
"neodroid-sample = neodroid.entry_points.action_space_sampling:main",
"neodroid-img = neodroid.entry_points.image_observation_plot:main",
"neodroid-img-batch = neodroid.entry_points.image_batch_observation_plot:main",
"neodroid-kb = neodroid.entry_points.keyboard.qweasd_input:main",
]
}
@property
def extras(self) -> dict:
these_extras = {
# 'gui': requirements_gui,
# 'tests':requirements_tests,
# 'docs':requirements_docs,
# 'dev': requirements_dev
# 'mab':['neodroid-linux-mab; platform_system == "Linux"',
# 'neodroid-win-mab platform_system == "Windows"']
}
path: Path = Path(__file__).parent / "requirements"
for file in path.iterdir():
if file.name.startswith("requirements_"):
group_name_ = "_".join(file.name.strip(".txt").split("_")[1:])
these_extras[group_name_] = read_reqs(file.name, path)
all_dependencies = []
for group_name in these_extras:
all_dependencies += these_extras[group_name]
these_extras["all"] = list(set(all_dependencies))
return these_extras
@property
def requirements(self) -> list:
path = Path(__file__).parent
requirements_out = []
with open(path / "requirements.txt") as f:
requirements = f.readlines()
for requirement in requirements:
requirements_out.append(requirement.strip())
return requirements_out
@property
def description(self) -> str:
return (
"Python interface for the Neodroid platform,"
" an API for communicating with a Unity Game "
"process for a feedback response loop"
)
@property
def readme(self) -> str:
with open("README.md") as f:
return f.read()
@property
def keyword(self) -> str:
with open("KEYWORDS.md") as f:
return f.read()
@property
def license(self) -> str:
return "Apache License, Version 2.0"
@property
def classifiers(self) -> List[str]:
return [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Natural Language :: English",
# 'Topic :: Scientific/Engineering :: Artificial Intelligence'
# 'Topic :: Software Development :: Bug Tracking',
]
@property
def version(self) -> str:
return version
class NeodroidPackage(metaclass=NeodroidPackageMeta):
pass
from setuptools import setup
if __name__ == "__main__":
pkg = NeodroidPackage
setup(
name=pkg.package_name,
version=pkg.version,
packages=pkg.packages,
package_data=pkg.package_data,
author=pkg.author_name,
author_email=pkg.author_email,
maintainer=pkg.maintainer_name,
maintainer_email=pkg.maintainer_email,
description=pkg.description,
license=pkg.license,
keywords=pkg.keyword,
url=pkg.url,
download_url=pkg.download_url,
install_requires=pkg.requirements,
extras_require=pkg.extras,
entry_points=pkg.entry_points,
classifiers=pkg.classifiers,
long_description_content_type=pkg.readme_type,
long_description=pkg.readme,
tests_require=pkg.test_dependencies,
setup_requires=pkg.setup_dependencies,
include_package_data=True,
python_requires=">=3.6",
)