-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·51 lines (49 loc) · 1.32 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
from setuptools import setup, find_packages
# Read the contents of the readme to publish it to PyPI
with open("README.md") as readme:
long_description = readme.read()
setup(
name="monome-diii",
description="Terminal interface for iii devices",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/monome/diii",
author="monome",
author_email="bcrabtree@monome.org",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
use_scm_version=True,
python_requires=">=3.6",
setup_requires=[
"setuptools_scm",
"setuptools_scm_git_archive",
],
install_requires=[
"Click>=7.0",
"packaging",
"prompt-toolkit>=2.0.10,<3.0",
"pyserial>=3.4",
"pyusb",
"requests",
"websockets>=9.1",
"setuptools",
"setuptools_scm",
"setuptools_scm_git_archive",
],
extras_require={
"test": [
"pylint",
]
},
entry_points={
"console_scripts": [
"diii=diii.cli:cli",
],
},
)