mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
19 lines
680 B
Python
19 lines
680 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="analysis", # Replace with your own username
|
|
version="1.0.0.000",
|
|
author="",
|
|
author_email="",
|
|
description="analysis package developed by TitanScouting and The Red Alliance",
|
|
long_description="analysis package developed by TitanScouting and The Red Alliance",
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/titanscout2022/tr2022-strategy",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: GNU General Public License v3.0",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
) |