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