forked from pk-hack/CoilSnake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (43 loc) · 1.24 KB
/
setup.py
File metadata and controls
executable file
·49 lines (43 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.extension import Extension
import platform
extra_compile_args = []
if platform.system() != "Windows":
extra_compile_args = ["-std=c99"]
setup(
name="coilsnake",
version="3.33",
description="CoilSnake",
url="https://mrtenda.github.io/CoilSnake",
packages=find_packages(),
include_package_data=True,
install_requires=[
"Pillow>=3.0.0",
"PyYAML>=3.11",
"CCScriptWriter>=1.2",
"ccscript>=1.338"
],
dependency_links=[
"https://github.com/Lyrositor/CCScriptWriter/tarball/master#egg=CCScriptWriter-1.2",
"https://github.com/tripped/ccscript_legacy/tarball/master#egg=ccscript-1.338"
],
ext_modules=[
Extension(
"coilsnake.util.eb.native_comp",
["coilsnake/util/eb/native_comp.c", "coilsnake/util/eb/exhal/compress.c"],
extra_compile_args=extra_compile_args,
)
],
entry_points={
"console_scripts": [
"coilsnake = coilsnake.ui.gui:main",
"coilsnake-cli = coilsnake.ui.cli:main"
]
},
test_suite="nose.collector",
tests_require=[
"nose>=1.0",
"mock>=1.0.1"
],
)