-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
68 lines (61 loc) · 1.91 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ""
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "README.rst")
if os.path.exists(readme_path):
with open(readme_path, "rb") as stream:
readme = stream.read().decode("utf8")
setup(
long_description=readme,
name="displayarray",
version="2.0.0",
description="Tool for displaying numpy arrays.",
python_requires="==3.*,>=3.7.0",
project_urls={"repository": "https://github.com/simleek/displayarray"},
author="SimLeek",
author_email="[email protected]",
license="MIT",
entry_points={"console_scripts": ["displayarray = displayarray.__main__:main"]},
packages=[
"displayarray",
"displayarray.effects",
"displayarray.frame",
"displayarray.window",
],
package_dir={"": "."},
package_data={},
install_requires=[
"docopt==0.6.2",
"localpubsub==0.0.4",
"numpy>=1.14.5",
"opencv-python==4.*,>=4.0.0",
"pyzmq>=22.0.3",
"tensorcom"
],
extras_require={
# pypi doesn't allow direct dependencies for security reasons,
# even though I could install a lot of viruses just from this setup.py
# "linux": ["PyV4L2Cam @ git+https://github.com/SimLeek/PyV4L2Cam"],
"dev": [
"black==18.*,>=18.3.0.a0",
"coverage==4.*,>=4.5.0",
"mock==3.*,>=3.0.0",
"mypy==0.*,>=0.740.0",
"pydocstyle==4.*,>=4.0.0",
"pytest==5.2.1",
"sphinx==2.*,>=2.2.0",
"tox==3.*,>=3.14.0",
"tox-gh-actions==0.*,>=0.3.0",
"typing==3.7.4.1",
"wheel==0.*,>=0.30.0"
],
},
)