forked from bigjason/datatree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1014 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
31
from os import path
from setuptools import setup, find_packages
from datatree import VERSION
with open(path.join(path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
setup(
name='datatree',
version='.'.join(map(str, VERSION)),
license='Apache License, Version 2.0',
description='DSL for creating structured documents in python.',
long_description=readme,
url='https://github.com/bigjason/datatree',
author='Jason Webb',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
keywords='xml builder json yaml',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: XML',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License'
]
)