Files
bellande_format/Package/Python/setup.py
2024-09-03 23:03:49 -04:00

41 lines
1.3 KiB
Python

from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="bellande_format",
version="0.1.0",
description="Robots Format",
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"],
},
entry_points={
'console_scripts': [
'bellande_format = bellande_parser:bellande_format',
],
},
project_urls={
"Home": "https://github.com/RonaldsonBellande/bellande_format",
"Homepage": "https://github.com/RonaldsonBellande/bellande_format",
"documentation": "https://github.com/RonaldsonBellande/bellande_format",
"repository": "https://github.com/RonaldsonBellande/bellande_format",
},
)