tra-analysis/analysis-master/setup.py

19 lines
659 B
Python
Raw Normal View History

2020-03-04 02:24:49 +00:00
import setuptools
setuptools.setup(
2020-03-04 18:37:58 +00:00
name="analysis", # Replace with your own username
2020-03-04 23:54:30 +00:00
version="1.0.0.001",
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',
)