-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 909 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (28 loc) · 909 Bytes
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
#!/usr/bin/env python
from setuptools import setup
VERSION = '0.2.2'
setup(name='django-bcp',
version=VERSION,
author="Andrew Cutler",
author_email="andrew@adlibre.com.au",
description="Barcode Printer for Django",
license="BSD",
long_description=open('README.md').read(),
url='https://github.com/adlibre/django-bcp',
packages=['bcp',],
download_url='https://github.com/adlibre/python-bureaucrat/archive/v%s.tar.gz' % VERSION,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Utilities",
],
install_requires=[
'django',
'reportlab>=2.6',
],
package_data={'bcp': ['fonts/*', 'templates/*', ]},
)