2020-03-04 02:24:49 +00:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(
|
2020-03-04 02:59:52 +00:00
|
|
|
name="tra-analysis", # Replace with your own username
|
2020-03-04 02:24:49 +00:00
|
|
|
version="1.0.0.000",
|
2020-03-04 02:48:50 +00:00
|
|
|
author="The Titan Scouting Team",
|
|
|
|
author_email="titanscout2022@gmail.com",
|
|
|
|
description="analysis package developed by Titan Scouting for The Red Alliance",
|
|
|
|
long_description="",
|
2020-03-04 02:24:49 +00:00
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/titanscout2022/tr2022-strategy",
|
|
|
|
packages=setuptools.find_packages(),
|
2020-03-04 02:55:46 +00:00
|
|
|
license = "GNU General Public License v3.0",
|
2020-03-04 02:24:49 +00:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
|
|
|
)
|