-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 751 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='pyolp_robotics',
version='0.0.3',
description='A full python framework for robot offline progamming',
url='https://github.com/Tanneguydv/pyolp_robotics',
author='Tanneguy de Villemagne',
author_email='tanneguydv@gmail.com',
license='LGPL-3',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
package_data={'pyolp_robotics': ['robots/resources/**/**/*.stp', 'robots/resources/**/**/*.txt']},
classifiers=[
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)