mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
changed setup.py to use __version__ from source
added Topic and keywords Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
parent
5aca65139e
commit
f04f460d47
@ -1,4 +1,5 @@
|
|||||||
import setuptools
|
import setuptools
|
||||||
|
import tra_analysis
|
||||||
|
|
||||||
requirements = []
|
requirements = []
|
||||||
|
|
||||||
@ -8,11 +9,11 @@ with open("requirements.txt", 'r') as file:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="tra_analysis",
|
name="tra_analysis",
|
||||||
version="2.1.0",
|
version=tra_analysis.__version__,
|
||||||
author="The Titan Scouting Team",
|
author="The Titan Scouting Team",
|
||||||
author_email="titanscout2022@gmail.com",
|
author_email="titanscout2022@gmail.com",
|
||||||
description="Analysis package developed by Titan Scouting for The Red Alliance",
|
description="Analysis package developed by Titan Scouting for The Red Alliance",
|
||||||
long_description="",
|
long_description="../README.md",
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/titanscout2022/tr2022-strategy",
|
url="https://github.com/titanscout2022/tr2022-strategy",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
@ -21,6 +22,8 @@ setuptools.setup(
|
|||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
|
"Topic :: Data Analysis"
|
||||||
],
|
],
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
|
keywords="data analysis tools"
|
||||||
)
|
)
|
Loading…
Reference in New Issue
Block a user