-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 756 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 756 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
from setuptools import setup, find_packages
try:
from Cython.Build import cythonize
except ImportError:
def cythonize(x):
return None
__version__ = "0.58.5"
setup(
name="eudplib",
version=__version__,
packages=find_packages(),
package_data={"": ["*.c", "*.pyx", "*.dll", "*.dylib", "*.lst"]},
ext_modules=cythonize(["eudplib/**/*.pyx"]),
python_requires=">=3",
install_requires=[
'bsdiff4',
'pycryptodomex',
],
# metadata for upload to PyPI
author="Trgk",
author_email="whyask37@naver.com",
description="EUD Trigger generator",
license="MIT license",
keywords="starcraft rawtrigger eud",
url="http://blog.naver.com/whyask37/", # project home page, if any
)