-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (54 loc) · 1.75 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
import codecs
import os
import sys
from setuptools import setup, find_packages
if len(sys.argv) <= 1:
print("""
Suggested setup.py parameters:
* build
* install
* sdist --formats=zip
* sdist # NOTE requires tar/gzip commands
PyPi:
twine upload dist/*
""")
package_root = os.path.abspath(os.path.dirname(__file__))
readme_filename = os.path.join(package_root, 'README.md')
if os.path.exists(readme_filename):
with codecs.open(readme_filename, encoding='utf-8') as f:
long_description = f.read()
else:
long_description = None
setup(
name='modtpy',
author="dominikandreas",
version="0.1",
description='Python API + CLI for controlling your New Matter Mod-T 3D printer',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dominikandreas/modtpy',
author_email='',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='home automation',
include_package_data=True,
packages=['modtpy', 'modtpy.api', 'modtpy.cli', 'modtpy.res', 'modtpy.web',
'modtpy.web.main', 'modtpy.web.printer', 'modtpy.web.static', 'modtpy.web.templates'],
platforms=['linux', 'windows'],
install_requires=[
'pyusb', # for usb access, requires libusb
'click', # for cli
'tqdm', # for progress bars
'flask', # for web-server
'fasteners' # for file-based multi-process mutex (concurrent USB access)
],
entry_points={
'console_scripts': ['modtpy=modtpy.cli:cli_root'],
}
)