-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (35 loc) · 878 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
setup(
name='Byzantium',
version='2013.09.17',
author='haxwithaxe',
author_email='[email protected]',
url='http://project-byzantium.org/',
description='',
long_description='',
download_url='https://github.com/Byzantium/python-byzantium',
package_dir={
'':'src',
'byzantium'
:'src/byzantium',
},
packages=[
'byzantium',
],
classifiers=[
'Development Status :: Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GPLv3',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System Administration',
'Topic :: Networking :: Mesh',
'Topic :: Software Development :: Services',
],
license='GPLv3',
requires=['dbus']
)