-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·31 lines (27 loc) · 957 Bytes
/
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
31
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='pyagxrobots',
version='0.8.4',
author='agilexrobotics',
author_email='support@agilex.ai',
description='A small example package for agxrobots',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/agilexrobotics/',
project_urls={
'Bug Tracker': 'https://github.com/agilexrobotics/',
},
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=['python-can>=3.3.4'],
python_requires='>=3.6',
)