forked from djc/rnc2rng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 982 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
28
29
30
from setuptools import setup
setup(
name='rnc2rng',
version='2.6.6',
url='https://github.com/djc/rnc2rng',
author='David Mertz',
description='RELAX NG Compact to regular syntax conversion library',
long_description=open('README.rst').read(),
maintainer='Dirkjan Ochtman',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: Text Processing :: Markup :: XML',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=['rnc2rng'],
entry_points={
'console_scripts': [
'rnc2rng = rnc2rng.__main__:main',
],
},
install_requires=['rply'],
)