-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
62 lines (59 loc) · 1.64 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
60
61
62
# -*- coding: utf-8 -*-
from setuptools import setup
import papis_rofi
with open('README.rst') as fd:
long_description = fd.read()
setup(
name='papis-rofi',
version=papis_rofi.__version__,
author='Alejandro Gallo',
author_email='[email protected]',
license='GPLv3',
url='https://github.com/papis/papis-rofi',
install_requires=[
"papis>=0.11.1",
"papis-python-rofi==1.0.3",
],
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='Rofi based inerface for papis',
long_description=long_description,
extras_require=dict(
develop=[
"sphinx",
'sphinx-click',
'sphinx_rtd_theme',
'pytest',
'pytest-cov',
]
),
keywords=[
'papis', 'rofi', 'bibtex',
'management', 'cli', 'biliography'
],
packages=[
"papis_rofi",
],
entry_points={
'papis.command': [
'rofi=papis_rofi.main:main'
],
'papis.picker': [
'rofi=papis_rofi.main:Picker'
]
},
platforms=['linux', 'osx'],
)