1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
from reconfigure import __version__
setup(
name='reconfigure',
version=__version__,
install_requires=[
'chardet'
],
description='An ORM for config files',
license='LGPLv3',
author='Eugeny Pankov',
author_email='e@ajenti.org',
url='http://ajenti.org/',
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
],
packages=find_packages(exclude=['*test*']),
)
|