2018-07-04 21:56:25 -03:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="dxf-ruler-generator",
|
2020-06-13 15:27:39 -03:00
|
|
|
version="0.0.4",
|
2018-07-04 21:56:25 -03:00
|
|
|
author="Luiz Lima",
|
|
|
|
author_email="umluizlima@gmail.com",
|
|
|
|
license="MIT License",
|
|
|
|
description="Custom sized rulers for digital fabrication.",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/umluizlima/dxf-ruler-generator",
|
2020-06-13 15:22:10 -03:00
|
|
|
python_requires=">=3.6.0",
|
2018-07-04 21:56:25 -03:00
|
|
|
py_modules=['dxf_ruler_generator'],
|
|
|
|
install_requires=['ezdxf'],
|
2018-07-05 17:45:18 -03:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'dxf-ruler-generator=dxf_ruler_generator:run',
|
|
|
|
],
|
|
|
|
},
|
2018-07-04 21:56:25 -03:00
|
|
|
classifiers=(
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
),
|
|
|
|
)
|