-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (56 loc) · 1.56 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
56
57
58
59
# -*- coding: utf-8 -*-
from setuptools import setup
from papis_dmenu import __version__
with open('README.rst') as fd:
long_description = fd.read()
setup(
name='papis-dmenu',
version=__version__,
author='Alejandro Gallo',
author_email='aamsgallo@gmail.com',
license='GPLv3',
url='https://github.com/papis/papis-dmenu',
install_requires=[
"papis>=0.11",
"dmenu",
],
classifiers=[
'Environment :: Console',
'Environment :: Console :: Curses',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
description='dmenu based inerface for papis',
long_description=long_description,
extras_require=dict(
develop=[
"sphinx",
'sphinx-click',
'sphinx_rtd_theme',
'pytest',
'pytest-cov',
]
),
keywords=[
'papis', 'dmenu', 'bibtex',
'management', 'cli', 'biliography'
],
packages=[
"papis_dmenu",
],
entry_points={
'papis.picker': [
'dmenu=papis_dmenu.dmenu:Picker'
]
},
platforms=['linux', 'osx'],
)