-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 735 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 735 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
29
30
31
#!/usr/bin/env python
import os
import sys
import shutil
from glob import glob
sys.path.insert(0, os.path.abspath('lib'))
from simulux import __version__, __author__, __author_email__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from simulux.constants import DIST_DEFAULTS_PATH
data_files = []
data_files.append((DIST_DEFAULTS_PATH, glob('./defaults/*')))
setup(
name='simulux',
version=__version__,
description='Simulator for linux',
url = 'https://github.com/zbal/simulux',
author=__author__,
author_email=__author_email__,
license='MIT',
package_dir={ 'simulux': 'lib/simulux' },
packages=[
'simulux'
],
data_files=data_files
)