-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·54 lines (48 loc) · 1.17 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
"""
Setup module for core library.
arkOS Core
(c) 2016 CitizenWeb
Written by Jacob Cook
Licensed under GPLv3, see LICENSE.md
"""
from setuptools import setup, find_packages
install_requires = [
'click',
'cryptography',
'dbus-python',
'free_tls_certificates',
'GitPython',
'gnupg',
'miniupnpc',
'netifaces',
'ntplib',
'psutil',
'pyldap',
'pyparted==3.10.7',
'pycryptsetup==1.7.2',
'python-pacman',
'python-nginx',
'requests',
'semantic_version',
'wheel'
]
dependency_links = [
'https://git.coderouge.co/arkOS/python-cryptsetup/repository/archive.tar.gz?ref=1.7.2#egg=pycryptsetup-1.7.2',
'https://github.com/rhinstaller/pyparted/archive/v3.10.7.tar.gz#egg=pyparted-3.10.7'
]
setup(
name='arkos-core',
version='0.8.3',
install_requires=install_requires,
dependency_links=dependency_links,
description='arkOS core system management libraries',
author='CitizenWeb',
author_email='[email protected]',
url='http://arkos.io/',
packages=find_packages(),
test_suite='tests',
entry_points={
'console_scripts': ['arkosctl = arkos.ctl:cli'],
}
)