-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
42 lines (37 loc) · 1.14 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
import os
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='zplgrf',
version='1.6.0',
description='Tools to work with ZPL GRF images and CUPS',
long_description=read('README.rst'),
author='Kyle MacFarlane',
author_email='kyle@deletethetrees.com',
url='https://github.com/kylemacfarlane/zplgrf',
license='GPLv3',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'setuptools',
'pillow'
],
tests_require=[
'ghostscript'
],
extras_require={
'bindings': ['ghostscript']
},
test_suite='zplgrf.tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)