forked from arkOScloud/genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (27 loc) · 923 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(
name='genesis',
version='0.6.0',
install_requires=[
'pyOpenSSL',
'gevent',
'lxml>=2.2.4',
'python-iptables',
'python-nginx',
],
description='arkOS node management app',
author='The CitizenWeb Project',
author_email='[email protected]',
url='http://arkos.io/',
packages=find_packages(),
package_data={'': ['files/*.*', 'files/*/*.*', 'files/*/*/*.*', 'templates/*.*', 'widgets/*.*', 'layout/*.*']},
scripts=['genesis-panel', 'genesis-pkg'],
data_files=[
('/etc/genesis', ['packaging/files/genesis.conf']),
('/etc/genesis/users', ['packaging/files/admin.conf']),
('/usr/lib/systemd/system', ['packaging/files/genesis.service']),
('/var/lib/genesis/plugins', ['packaging/files/.placeholder']),
],
)