mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
28 lines
788 B
Python
28 lines
788 B
Python
import setuptools
|
|
import tra_analysis
|
|
|
|
requirements = []
|
|
|
|
with open("requirements.txt", 'r') as file:
|
|
for line in file:
|
|
requirements.append(line)
|
|
|
|
setuptools.setup(
|
|
name="tra_analysis",
|
|
version=tra_analysis.__version__,
|
|
author="The Titan Scouting Team",
|
|
author_email="titanscout2022@gmail.com",
|
|
description="Analysis package developed by Titan Scouting for The Red Alliance",
|
|
long_description="../README.md",
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/titanscout2022/tr2022-strategy",
|
|
packages=setuptools.find_packages(),
|
|
install_requires=requirements,
|
|
license = "BSD 3-Clause License",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
keywords="data analysis tools"
|
|
) |