-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.19 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
install_requires = open('requirements.txt').read().split()
try:
import argparse
except ImportError:
install_requires.append('argparse')
setup(
name='deba-bocho',
version='0.5.2',
provides=['bocho'],
description='Slice up PDFs like a pro.',
long_description=open('README.rst').read(),
author='James Rutherford',
author_email='[email protected]',
url='https://github.com/jimr/deba-bocho',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
],
license='MIT',
test_suite='tests',
entry_points={'console_scripts': 'bocho = bocho.cmd:main'},
py_modules=['bocho'],
packages=['bocho'],
install_requires=install_requires,
)