forked from joco-nz/bf20_mill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 740 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 740 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("entry_points.ini", "r") as fh:
entry_points = fh.read()
setup(
name="bf20_mill",
version="0.0.1",
author="James Walker",
author_email="james.walker.nz@me.com",
description="bf20_mill - A QtPyVCP based Virtual Control Panel for LinuxCNC",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/joco-nz/bf20_mill",
download_url="https://github.com/joco-nz/bf20_mill/tarball/master",
packages=find_packages(),
include_package_data=True,
entry_points=entry_points,
install_requires=[
'qtpyvcp',
],
)