-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 772 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name = 'elementflow',
version = '0.5',
author = 'Ivan Sagalaev',
author_email = 'maniac@softwaremaniacs.org',
url = 'https://github.com/isagalaev/elementflow',
license = 'BSD',
description = 'Python library for generating XML as a stream without building a tree in memory.',
long_description = open('README.md').read(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires = ['six'],
py_modules = ['elementflow'],
)