forked from tuxberlin/python-keyctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (41 loc) · 1.24 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
try:
import pypandoc
here = os.path.abspath(os.path.dirname(__file__))
readmefile = os.path.join(here, 'README.md')
readme = pypandoc.convert_file(readmefile, 'rst', encoding='utf-8')
readme = readme.replace('\r', '')
except ImportError:
readme = 'see README.md'
print('NO README CREATED')
setup(
name='keyctl',
version='0.4',
description='Wrapper to use keyctl command in Python',
long_description=readme,
author='Martin Becker',
author_email='[email protected]',
url='https://github.com/tuxberlin/python-keyctl',
license='GPL-3.0',
packages=['keyctl', 'keyctl.gui'],
package_data={
'keyctl.gui': ['addkey.ui', 'keylist.ui'],
},
install_requires=[],
entry_points={
'console_scripts': [
'keyctlgui=keyctl.gui:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Environment :: X11 Applications :: Qt',
'Topic :: Utilities',
]
)