forked from ekiefl/pooltool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·53 lines (51 loc) · 1.36 KB
/
setup.py
File metadata and controls
executable file
·53 lines (51 loc) · 1.36 KB
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
#! /usr/bin/env python
from setuptools import find_packages, setup
setup(
name="pooltool-billiards",
version="0.2.1",
packages=find_packages(),
scripts=["run_pooltool", "run_pooltool.bat"],
author_email="kiefl.evan@gmail.com",
author="Evan Kiefl",
url="https://github.com/ekiefl/pooltool",
install_requires=[
"numpy",
"pandas",
"numba",
"scipy",
"panda3d==1.10.13",
"panda3d-gltf",
"panda3d-simplepbr",
"Pillow",
"cattrs",
"attrs",
"pprofile",
"msgpack",
"msgpack-numpy",
"h5py",
"pyyaml",
],
include_package_data=True,
zip_safe=False,
# options = {
# 'build_apps': {
# #'platforms': ["win_amd64", "manylinux2010_x86_64", "macosx_10_9_x86_64"],
# 'platforms': ['macosx_10_9_x86_64'],
# 'include_patterns': [
# 'pooltool/**/*.png',
# 'pooltool/**/*.jpg',
# 'pooltool/**/*.egg',
# 'pooltool/**/*.glb',
# 'pooltool/**/*.png',
# 'pooltool/**/*.jpg',
# 'pooltool/**/*.egg',
# 'pooltool/**/*.glb',
# ],
# 'gui_apps': {
# 'pooltool': 'run_pooltool',
# },
# 'plugins': [
# ],
# }
# }
)