diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 38 | 
1 files changed, 38 insertions, 0 deletions
| diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8ceb4f7 --- /dev/null +++ b/setup.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +import os +from setuptools import setup, find_packages +import chimere + + +try: +    reqs = open(os.path.join(os.path.dirname(__file__), +                             'requirements.txt')).read() +except (IOError, OSError): +    reqs = '' + +setup( +    name='chimere', +    version=chimere.get_version(), +    description= +    "Chimere is a kind of online “mashup” which is designed to aggregate "\ +    "geographic data from several sources. Chimere gets a map from "\ +    "OpenStreetMap and display other data added by users. Datas are freely "\ +    "submitted by visitors and then validated by an administrator.", +    long_description=open('README.txt').read(), +    author=u'Étienne Loks', +    author_email='etienne.loks@peacefrogs.net', +    url='http://www.chymeres.net/', +    license='GPL v3 licence, see COPYING', +    packages=find_packages(), +    include_package_data=True, +    install_requires=reqs, +    #test_suite = "chimere.runtests.runtests", +    classifiers=[ +        'Development Status :: 4 - Beta', +        'Environment :: Web Environment', +        'Framework :: Django', +        'Intended Audience :: Developers', +        'Programming Language :: Python', +        'Operating System :: OS Independent', +    ] +) | 
