-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 813 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 813 Bytes
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
import setuptools
# from torch.utils import cpp_extension
setuptools.setup(
name="luafun",
version="0.0.0",
author="Pierre Delaunay",
packages=setuptools.find_packages(),
# ext_modules=[
# cpp_extension.CppExtension('mmcust', ['luafun/cpp/mmcust.cpp'])
# ],
# cmdclass={
# 'build_ext': cpp_extension.BuildExtension
# },
entry_points={
'console_scripts': [
'luafun = luafun.main:main',
'luafun-drafter = luafun.drafter:main',
'luafun-draft-extractor = luafun.steamapi.steamapi:main',
]
},
package_data={
'luafun': [
'botslua/*.lua',
'luafun/game/resources/*.json'
]
},
install_requires=[
'protobuf',
'pygtail',
'torch'
],
)