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
|
#!/usr/bin/env python
import sys
from distutils.core import setup
from gkeyldap import __version__, __license__
# this affects the names of all the directories we do stuff with
sys.path.insert(0, './')
#__version__ = os.getenv('VERSION', default='9999')
# Load EPREFIX from Portage, fall back to the empty string if it fails
try:
from portage.const import EPREFIX
except ImportError:
EPREFIX=''
setup(
name='gkeyldap',
version=__version__,
description="Gentoo gpg key management LDAP gkey seed generator",
author='',
author_email='',
maintainer='Gentoo-Keys Team',
maintainer_email='gkeys@gentoo.org',
url="https://wiki.gentoo.org/wiki/Project:Gentoo-keys",
download_url='',
packages=['gkeyldap'],
scripts=['bin/gkey-ldap'],
license=__license__,
long_description=open('README.md').read(),
keywords='gpg',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv2 License',
'Programming Language :: Python :: 2.7, 3.3, 3.4, +',
'Operating System :: OS Independent',
'Topic :: Security :: Cryptography',
],
)
|