-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
32 lines (29 loc) · 1.16 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
from setuptools import setup
import xsd_to_django_model
setup(
name='xsd_to_django_model',
version=xsd_to_django_model.__version__,
url='http://github.com/tuffnatty/xsd_to_django_model',
license='GNU General Public License v3 (GPLv3)',
author='Phil Krylov',
author_email='[email protected]',
description='Generate Django models from an XSD schema description (and a bunch of hints)',
packages=['xsd_to_django_model'],
platforms='any',
install_requires=['docopt', 'ndifflib', 'xmlschema'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: XML',
],
scripts=['xsd_to_django_model/xsd_to_django_model.py']
)