-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 925 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='sc2-feature-extractor',
version='1.0',
description='StarCraft II high-level feature extractor and replay visualizer',
url='https://github.com/SRI-AIC/sc2-feature-extractor',
author='Pedro Sequeira',
author_email='pedro.sequeira@sri.com',
packages=find_packages(),
scripts=[
],
install_requires=[
'protobuf == 3.20.1',
'pysc2',
'numpy',
'pandas',
'jsonpickle',
'scipy',
'absl-py',
'tqdm',
'matplotlib',
'plotly',
'kaleido',
'scikit-video >= 1.1.11',
'joblib'
],
extras_require={
'macos': [
'pyobjc-framework-Quartz'
],
'windows': [
'pywin32'
],
},
zip_safe=True
)