-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·35 lines (28 loc) · 970 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
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python2
from setuptools import setup
from os import path, listdir
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
def files(dirname):
return [path.join(dirname, filename) for filename in listdir(dirname)]
setup(
name='xdommn',
version='0.2',
description='Mininet extension for cross-domain simulation.',
url='https://github.com/openalto/xdom-mn',
author='Y.Jace Liu, Jensen Zhang',
author_email='[email protected], [email protected]',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: System :: Emulators",
],
install_requires=read('requirements.txt').splitlines(),
license='MIT',
long_description=read('README.rst'),
packages=['xdommn'],
scripts=files('bin'),
zip_safe=False,
)