2020-05-01 21:07:57 +00:00
|
|
|
import setuptools
|
2020-10-05 03:49:27 +00:00
|
|
|
import tra_analysis
|
2020-05-01 21:07:57 +00:00
|
|
|
|
|
|
|
requirements = []
|
|
|
|
|
|
|
|
with open("requirements.txt", 'r') as file:
|
2020-05-01 21:15:07 +00:00
|
|
|
for line in file:
|
|
|
|
requirements.append(line)
|
2020-05-01 21:07:57 +00:00
|
|
|
|
|
|
|
setuptools.setup(
|
2020-08-10 19:29:51 +00:00
|
|
|
name="tra_analysis",
|
2020-10-05 03:49:27 +00:00
|
|
|
version=tra_analysis.__version__,
|
2020-05-01 21:15:07 +00:00
|
|
|
author="The Titan Scouting Team",
|
|
|
|
author_email="titanscout2022@gmail.com",
|
2020-08-10 19:29:51 +00:00
|
|
|
description="Analysis package developed by Titan Scouting for The Red Alliance",
|
2020-10-05 03:49:27 +00:00
|
|
|
long_description="../README.md",
|
2020-05-01 21:15:07 +00:00
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/titanscout2022/tr2022-strategy",
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
install_requires=requirements,
|
2020-07-30 19:05:07 +00:00
|
|
|
license = "BSD 3-Clause License",
|
2020-05-01 21:15:07 +00:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
2020-10-05 03:49:27 +00:00
|
|
|
"Topic :: Data Analysis"
|
2020-05-01 21:15:07 +00:00
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
2020-10-05 03:49:27 +00:00
|
|
|
keywords="data analysis tools"
|
2020-05-01 21:07:57 +00:00
|
|
|
)
|