-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
50 lines (48 loc) · 1.83 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
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2020, SISSA (Scuola Internazionale Superiore di Studi Avanzati).
# All rights reserved.
# This file is distributed under the terms of the BSD 3-Clause license.
# See the file 'LICENSE' in the root directory of the present distribution,
# or https://opensource.org/licenses/BSD-3-Clause
#
from setuptools import find_packages, setup
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='xsdtools',
version='0.3.0a1',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
entry_points={
'console_scripts': ['xsdtools=xsdtools.__main__:main']
},
install_requires=['xmlschema>=1.8', 'jinja2'],
author='Davide Brunato et al.',
url='https://github.com/QEF/xsdtools',
license='BSD 3-Clause',
license_file='LICENSE',
description='Tools for code generation from XSD schemas',
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Code Generators',
'Topic :: Text Processing :: Markup :: XML',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
]
)