mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
7a58cd08e2
analysis.py v 1.1.13.009 superscript.py v 0.0.5.002
26 lines
781 B
Python
26 lines
781 B
Python
import setuptools
|
|
|
|
requirements = []
|
|
|
|
with open("requirements.txt", 'r') as file:
|
|
for line in file:
|
|
requirements.append(line)
|
|
|
|
setuptools.setup(
|
|
name="analysis",
|
|
version="1.0.0.011",
|
|
author="The Titan Scouting Team",
|
|
author_email="titanscout2022@gmail.com",
|
|
description="analysis package developed by Titan Scouting for The Red Alliance",
|
|
long_description="",
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/titanscout2022/tr2022-strategy",
|
|
packages=setuptools.find_packages(),
|
|
install_requires=requirements,
|
|
license = "GNU General Public License v3.0",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
) |