-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (27 loc) · 1.16 KB
/
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
from setuptools import setup, find_packages
from io import open
import os
version = '2.1'
ldesc = open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf8').read()
setup(name='confiture',
version=version,
description='Advanced configuration parser for Python',
long_description=ldesc,
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing'],
keywords='configuration parser confiture conf dotconf',
author='Antoine Millet',
author_email='[email protected]',
url='https://idevelop.org/p/confiture/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=['ply'])