Skip to content

Commit

Permalink
switch to distutils (fixes #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Apr 21, 2011
1 parent ba4cbd7 commit 5071755
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
import os
from setuptools import setup, find_packages
from distutils.core import setup

here = os.path.abspath(os.path.dirname(__file__))

setup(
name = "easydict",
version = "1.0",
description="Access dict values as attributes (works recursively)",
long_description=open(os.path.join(here, 'README.rst')).read(),
packages = find_packages(),
name='easysdict',
version='1.0',
author='Mathieu Leplatre',
author_email='mathieu.leplatre@makina-corpus.com',
packages=['easydict'],
url='https://github.com/makinacorpus/easydict',
classifiers = ['Topic :: Utilities',
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.5'],
author = 'Mathieu Leplatre',
author_email = 'mathieu.leplatre@makina-corpus.com',
description="Access dict values as attributes (works recursively)",
long_description=open(os.path.join(here, 'README.rst')).read(),
)

0 comments on commit 5071755

Please sign in to comment.