-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
36 lines (29 loc) · 1.1 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
from setuptools import setup
long_description='Provides django model field to store and validate ISBN numbers.'
setup(
name='django-isbn-field',
version='0.5.3',
description='Provides a model and form fields to manage and validate ISBN numbers',
long_description=long_description,
url='https://github.com/secnot/django-isbn-field',
author='secnot',
license='LPGLv3.0',
keywords=['django', 'isbn', 'field'],
classifiers=[
'Topic :: Utilities',
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3'],
# Package
packages = ['isbn_field'],
package_data={'isbn_field': ['locale/*/LC_MESSAGES/django.*']},
install_requires = ['Django', 'python-stdnum>=1.5', 'six'],
zip_safe = False,
include_package_data=True,
)