forked from pnxenopoulos/awpy
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
59 lines (56 loc) · 1.79 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name="awpy",
version="1.3.1",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
"imageio~=2.28.0",
"matplotlib~=3.7.0",
"networkx~=3.1",
"numpy>=1.20,<=1.25",
"pandas~=2.0.1",
"pydantic~=2.0.1",
"scipy~=1.10.0",
"Shapely~=2.0.0",
"sphinx-rtd-theme==1.2",
"sympy==1.11",
"textdistance~=4.5.0",
"tqdm~=4.65.0",
"typing_extensions~=4.7.0",
],
package_data={
# If any package contains *.txt or *.rst files, include them:
"": [
"*.go",
"data/map/*.png",
"data/map/*.json",
"data/nav/*.txt",
"data/nav/*.csv",
"data/nav/*.json",
"*.mod",
"*.sum",
]
},
# metadata to display on PyPI
author="Peter Xenopoulos",
author_email="[email protected]",
description=(
"Counter-Strike: Global Offensive data parsing, "
"analysis and visualization functions"
),
long_description=long_description,
long_description_content_type="text/markdown",
keywords="esports sports-analytics csgo counter-strike",
url="https://github.com/pnxenopoulos/awpy",
project_urls={
"Issues": "https://github.com/pnxenopoulos/awpy/issues",
"Documentation": "https://awpy.readthedocs.io/en/latest/?badge=latest",
"GitHub": "https://github.com/pnxenopoulos/awpy/",
},
classifiers=["License :: OSI Approved :: MIT License"],
)