forked from vishnubob/snowflake
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (31 loc) · 869 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (31 loc) · 869 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
#!/usr/bin/env python
from setuptools import setup
snowflake = {
"name":"snowflake",
"description":"snowflake generator",
"author":"Giles Hall / Rachael Holmes",
"packages": ["sfgen"],
"package_dir": {
"sfgen": "src",
},
"py_modules":[
"sfgen.__init__",
"sfgen.curves",
"sfgen.engine",
"sfgen.graphics",
"sfgen.movie",
"sfgen.render",
"sfgen.runner",
"sfgen.splines",
],
"install_requires": [
"pillow",
],
"package_data": {"sfgen": ["etc/*.ini"]},
"scripts":[
"scripts/snowflake.py",
],
"version": "0.31",
}
if __name__ == "__main__":
setup(**snowflake)