latest pushes
This commit is contained in:
2
Package/python/publish.sh
Executable file
2
Package/python/publish.sh
Executable file
@ -0,0 +1,2 @@
|
||||
python setup.py sdist
|
||||
twine upload dist/*
|
44
Package/python/setup.py
Normal file
44
Package/python/setup.py
Normal file
@ -0,0 +1,44 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("../../README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(
|
||||
name="bellande_limit",
|
||||
version="0.3.3",
|
||||
description="Robots Limit",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
author="RonaldsonBellande",
|
||||
author_email="ronaldsonbellande@gmail.com",
|
||||
packages=find_packages(where="src"),
|
||||
package_dir={"": "src"},
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
"numpy",
|
||||
],
|
||||
classifiers=[
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
"Programming Language :: Python",
|
||||
],
|
||||
keywords=["package", "setuptools"],
|
||||
python_requires=">=3.0",
|
||||
extras_require={
|
||||
"dev": ["pytest", "pytest-cov[all]", "mypy", "black"],
|
||||
},
|
||||
package_data={
|
||||
'bellande_limit': ['Bellande_Step'],
|
||||
},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'bellande_limit_executable = bellande_limit.bellande_limit_executable:main',
|
||||
'bellande_limit_api = bellande_limit.bellande_limit_api:main',
|
||||
],
|
||||
},
|
||||
project_urls={
|
||||
"Home": "https://github.com/Robotics-Sensors/bellande_limit",
|
||||
"Homepage": "https://github.com/Robotics-Sensors/bellande_limit",
|
||||
"documentation": "https://github.com/Robotics-Sensors/bellande_limit",
|
||||
"repository": "https://github.com/Robotics-Sensors/bellande_limit",
|
||||
},
|
||||
)
|
1
Package/python/src/.gitignore
vendored
Normal file
1
Package/python/src/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
bellande_step.egg-info
|
0
Package/python/src/__init__.py
Normal file
0
Package/python/src/__init__.py
Normal file
Reference in New Issue
Block a user