-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
27 lines (24 loc) · 827 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
with open('pypi.rst') as f:
long_description = f.read()
setup(name='pylabels',
version='1.2.1',
description='Library to generate PDFs for printing labels',
long_description=long_description,
author='Blair Bonnett',
author_email='[email protected]',
url='https://github.com/bcbnz/pylabels/',
packages=['labels',],
requires=['reportlab'],
provides=['pylabels'],
license='GPLv3+',
platforms=['OS Independent'],
zip_safe=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)