-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 930 Bytes
/
setup.py
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
############################################################
# setup.py
#
# Important notice:
# I only made this file to create a win32 installer. Don't
# expect it to operate well on Unix; the installation method
# there is still 'make install'.
############################################################
from distutils.core import setup, Extension
setup(name='robin',
version='1.0.4',
url='robin.python-hosting.com',
author='corwin',
author_email='corwin.amber@gmail.com',
scripts=['griffin', 'Griffin.jar', 'griffin.bat'],
py_modules=['robin', 'griffin', 'stl'],
packages=['robinlib', 'robinlib.html'],
package_dir={'': 'src/robin/modules'},
data_files=[('DLLs', ['robin_pyfe-1.0.dll', 'robin_stl-1.0.dll']),
('Scripts/premises', ['premises/antlr.jar',
'premises/xmlParserAPIs.jar',
'premises/xercesImpl.jar',
'premises/jython.jar'])]
)