-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
32 lines (30 loc) · 1.2 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
30
31
32
#!/usr/bin/python
# -*- coding: utf8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='easydict',
version='1.13',
author='Mathieu Leplatre',
url='https://github.com/makinacorpus/easydict',
download_url="http://pypi.python.org/pypi/easydict/",
description="Access dict values as attributes (works recursively).",
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
open(os.path.join(here, 'CHANGES')).read(),
license='LGPL-3.0',
install_requires=[],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
keywords=['Tools'],
classifiers=['Topic :: Utilities',
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 3.6'],
)