-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_lin.py
38 lines (35 loc) · 984 Bytes
/
setup_lin.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
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from distutils.command.sdist import sdist
from distutils.core import setup
import os
import sys
from nemesys.executer import __version__
if sys.platform == 'win':
import py2exe
setup(name='Nemesys',
version=__version__,
description='NEtwork MEasurement SYStem',
long_description=open('README').read(),
license='GPL',
author='Giuseppe Pantanetti',
author_email='gpantanetti@fub.it',
url='http://code.google.com/p/nemesys-qos/',
packages=['nemesys'],
requires=['M2Crypto', 'glib', 'gtk', 'gobject'],
provides=['nemesys'],
platforms=['Linux', 'Windows', 'MacOS'],
windows=[
{
'script': 'nemesys/gui.py',
'icon_resources': [(1, "nemesys.ico")],
}
],
options={
'py2exe': {
'includes': 'asyncore, glib, sys, time, webbrowser, gtk, gobject',
},
'sdist': {
'formats': 'zip',
}
}
)