-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 778 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 778 Bytes
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="humanize-gcode",
version="0.0.6",
description="Annotates GCode files with human readable descriptions of commands",
author="Oskar Haarklou Veileborg",
author_email="ohv1020@hotmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BarrensZeppelin/humanize-gcode",
python_requires=">=3.6",
install_requires=[
"lxml[html_clean]",
"requests_html",
"crayons",
"appdirs",
],
packages=["humanize_gcode"],
scripts=["scripts/hucode"],
classifiers=("Programming Language :: Python :: 3.6",),
)