-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (24 loc) · 953 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
from setuptools import setup, find_packages
# Read the requirements from requirements.txt
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="rallyrobopilot", # Replace with your package name
version="0.1",
author="Louis Lettry, Cédric Travelletti",
author_email="",
description="",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="", # Replace with your repo URL if available
packages=find_packages(), # Automatically find and include packages
include_package_data=True, # Include package data specified in MANIFEST.in
package_data={"": ["assets/*"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Adjust license as needed
"Operating System :: OS Independent",
],
python_requires='>=3.10',
install_requires=requirements,
)