-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (29 loc) · 1.02 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
from setuptools import setup, find_packages
import sivicncdriver
setup(name='SiviCNCDriver',
version=sivicncdriver.__version__,
description='A software to control my CNC',
long_description=open('README.rst').read(),
url='http://github.com/klafyvel/SiviCNCDriver',
author='klafyvel',
author_email="sivigik@gmail.com",
license='GPL',
include_package_data=True,
packages=find_packages(),
install_requires= open('requirements.txt').read().split('\n'),
classifier=[
'Development Status :: 4 - Beta',
'Intended Audience :: Manufacturing',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: French',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
entry_points = {
'gui_scripts': [
'sivicnc = sivicncdriver.__main__:main',
],
},
)