forked from ajenti/ajenti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (33 loc) · 1021 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
36
37
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
import ajenti.build
__version = ajenti.build.version
setup(
name='ajenti',
version=__version,
install_requires=[
'pyOpenSSL',
'gevent',
'gevent-socketio',
'lxml>=2.2.4',
'python-daemon',
'passlib',
'psutil>=0.6.0',
'requests',
'reconfigure',
'PIL',
],
description='The server administration panel',
author='Eugeny Pankov',
author_email='[email protected]',
url='http://ajenti.org/',
packages=find_packages(exclude=['reconfigure', 'reconfigure.*']),
package_data={'': ['content/*.*', 'content/*/*.*', 'content/*/*/*.*', 'layout/*.*', 'locale/*/*/*.mo']},
scripts=['ajenti-panel', 'ajenti-ssl-gen'],
data_files=[
('/etc/ajenti', ['packaging/files/config.json']),
('/etc/init.d', ['packaging/files/ajenti']),
('/var/lib/ajenti/plugins', ['packaging/files/.placeholder']),
],
)