-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
55 lines (47 loc) · 1.94 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
55
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
from ganeti_webmgr import __version__ as version
readme = open('README.rst').read()
changelog = open('CHANGELOG.rst').read().replace('.. :changelog:', '')
requirements = open('requirements/production.txt').read().splitlines()
setup(
name='ganeti_webmgr',
version=version,
# metadata
description=('Ganeti Web Manager is a Django based web frontend for'
' managing Ganeti virtualization clusters.'),
long_description=readme + '\n\n' + changelog,
keywords='ganeti web manager django',
author='Oregon State University Open Source Lab',
author_email='[email protected]',
url='https://github.com/osuosl/ganeti_webmgr',
# package
packages=find_packages(exclude=["docs"]), # should find package easily
install_requires=requirements,
# easiest way to install templates, static files, translation files etc.
include_package_data=True,
# in case you want to have easy testing in future by `./setup.py test`
# you'd need to work with setuptools documentation:
# http://pythonhosted.org/setuptools/setuptools.html
#test_suite='tests',
# other meta and legal information
license="GPLv2",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Natural Language :: Greek',
'Natural Language :: Spanish',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Clustering',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
],
)