-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (47 loc) · 1.61 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
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup
with open("README.md") as f:
description = f.read()
install_requires = ["click", "pint", "aiodns", "netifaces", "beautifultable>=1"]
extras_require = {
"basler": ["pylonctl"],
"eiger": ["aiohttp"]
}
extras_require["all"] = install_requires + list(
set.union(*(set(i) for i in extras_require.values()))
)
setup(
name="lima-toolbox",
author="Jose Tiago Macara Coutinho",
author_email="coutinhotiago@gmail.com",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
"console_scripts": ["limatb = limatb.cli:main"],
"limatb.cli.camera": [
"Basler = limatb.camera.basler:basler [basler]",
"Eiger = limatb.camera.eiger:eiger [eiger]",
],
"limatb.cli.camera.scan": [
"Basler = limatb.camera.basler:scan [basler]",
"Eiger = limatb.camera.eiger:scan [eiger]",
],
},
install_requires=install_requires,
extras_require=extras_require,
description="Lima toolbox",
long_description=description,
long_description_content_type="text/markdown",
keywords="Lima, CLI, toolbox, detector",
url="https://github.com/tiagocoutinho/lima-toolbox",
version="1.0.0",
python_requires=">=3.5",
)