|
| 1 | +from setuptools import setup, find_packages |
| 2 | + |
| 3 | +with open("README.md", "r", encoding="utf-8") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +setup( |
| 7 | + name="avisengine", |
| 8 | + version="0.1.3", |
| 9 | + author="Amirmohammad Zarif", |
| 10 | + author_email="amirmohammadzarif@avisengine.com", |
| 11 | + description="Python API for AVIS Engine Simulator - A robust simulation platform for autonomous vehicle development", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/AvisEngine/AVIS-Engine-Python-API", |
| 15 | + project_urls={ |
| 16 | + "Homepage": "https://avisengine.com", |
| 17 | + "Documentation": "https://docs.avisengine.com", |
| 18 | + "Source": "https://github.com/AvisEngine/AVIS-Engine-Python-API", |
| 19 | + }, |
| 20 | + package_dir={"": "src"}, |
| 21 | + packages=find_packages(where="src"), |
| 22 | + classifiers=[ |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Development Status :: 5 - Production/Stable", |
| 27 | + "Intended Audience :: Science/Research", |
| 28 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 29 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 30 | + ], |
| 31 | + python_requires=">=3.6", |
| 32 | + install_requires=[ |
| 33 | + "numpy>=1.18.3", |
| 34 | + "opencv-contrib-python>=4.2.0.34", |
| 35 | + "opencv-python>=4.2.0.34", |
| 36 | + "Pillow>=7.1.2", |
| 37 | + "PySocks>=1.7.1", |
| 38 | + "PyYAML>=5.3.1", |
| 39 | + "regex>=2020.4.4", |
| 40 | + "requests>=2.22.0" |
| 41 | + ], |
| 42 | +) |
0 commit comments