-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 796 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 796 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='xmlcls',
version='0.1.b2',
description='Classes for work with XML elements as objects',
author='chsergey',
author_email='chsergey@chsergey.ru',
license='MIT',
url='https://github.com/chsergey/xmlcls',
keywords='xml lxml parsing defusedxml',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Markup :: XML',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: MIT License',
],
packages=['xmlcls'],
install_requires=['defusedxml', 'lxml~=4.2.1'],
python_requires='~=3.3',
project_urls={
'Source': 'https://github.com/chsergey/xmlcls',
},
)