Update required Python version to be 3.6+

This commit is contained in:
Luiz Lima
2020-06-13 15:22:10 -03:00
parent 72f17ff5ed
commit 889258a8fe
2 changed files with 7 additions and 11 deletions

View File

@ -11,27 +11,22 @@ This project consists of a Python script that takes an Integer as argument to dr
The output file uses the **.dxf** extension, which can be used for laser cutting and engraving.
## Installation
## Requirements
- Windows
- Python 3.6+
## Installation
```sh
pip install dxf-ruler-generator
```
- Linux
```sh
sudo pip3 install dxf-ruler-generator
```
## Usage example
## Usage
The following command will create a file `ruler_7cm.dxf` on the current working directory:
```sh
>dxf-ruler-generator 7
path\to\current\directory\ruler_7cm.dxf
dxf-ruler-generator 7
```
This is how the file looks like when imported on a laser fabrication software:

View File

@ -13,6 +13,7 @@ setup(
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/umluizlima/dxf-ruler-generator",
python_requires=">=3.6.0",
py_modules=['dxf_ruler_generator'],
install_requires=['ezdxf'],
entry_points={