-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (31 loc) · 1.11 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
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = []
test_requirements = []
setup(
author="Kestin Goforth",
author_email="[email protected]",
python_requires=">=3.6",
description="Generates a gcode file to set your 3D printer's bed or enclosure to a specific temperature for a set amount of time in order to dry spools of filament.",
entry_points={
"console_scripts": [
"filament_dryer_script_generator=filament_dryer_script_generator:main",
],
},
install_requires=requirements,
license="GNU Affero General Public License v3",
long_description=readme,
long_description_content_type="text/x-rst",
include_package_data=True,
keywords="filament_dryer_script_generator",
name="filament_dryer_script_generator",
py_modules=["filament_dryer_script_generator"],
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/kforth/Filament-Dryer-Script-Generator",
version="0.2.2",
zip_safe=False,
)