[go: up one dir, main page]

Menu

[r3]: / setup.py  Maximize  Restore  History

Download this file

14 lines (12 with data), 366 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/usr/bin/env python
from distutils.core import setup
setup(name="nimc",
version="0.0.5",
packages=['nimc'],
package_dir={'nimc': './nimc'},
scripts = ['nimc-server', 'nimc-client'],
data_files=[],
author = "Lukas Sabota",
author_email = "punkrockguy318@comcast.net",
url = "http://punkrockguy318.no-ip.org"
)