-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (37 loc) · 1.46 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
"""Setup of PrusaConnect SDK for Printer."""
from setuptools import setup # type: ignore
def doc():
"""Return README.md content."""
with open('README.md', 'r', encoding="utf-8") as readme:
return readme.read().strip()
setup(
name='py-gcode-metadata',
version='0.2.0dev',
packages=['gcode_metadata'],
url='https://github.com/prusa3d/gcode-metadata',
license='LGPLv2+',
author='Prusa Connect Developers',
author_email='[email protected]',
maintainer='Prusa Connect Developers',
maintainer_email='[email protected]',
description='Python library for extraction of metadata from g-code files',
project_urls={
"Bug Tracker": "https://github.com/prusa3d/gcode-metadata/issues",
"Source Code": "https://github.com/prusa3d/gcode-metadata",
},
package_data={'gcode_metadata': ['py.typed']},
data_files=[("share/doc/gcode-metadata",
["README.md", "ChangeLog", "LICENSE"])],
long_description=doc(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: "
"GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)