diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..8744b51b --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README.rst +recursive-include youmap/static * +recursive-include youmap/templates * \ No newline at end of file diff --git a/setup.py b/setup.py index 45b2afd7..c4c0a883 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,36 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- + +import codecs + from setuptools import setup, find_packages +import youmap + +long_description = codecs.open('README.rst', "r", "utf-8").read() + setup( - name='youmap', - version='1.0', - description="", - author="Lincoln Loop", - author_email='info@lincolnloop.com', - url='', + name="youmap", + version=youmap.__version__, + author=youmap.__author__, + author_email=youmap.__contact__, + description=youmap.__doc__, + keywords="django leaflet geodjango openstreetmap", + url=youmap.__homepage__, + download_url="https://bitbucket.org/yohanboniface/youmap_project/downloads", packages=find_packages(), - package_data={'youmap': ['static/*.*', 'templates/*.*']}, - scripts=['manage.py'], + include_package_data=True, + platforms=["any"], + zip_safe=True, + long_description=long_description, + + classifiers=[ + "Development Status :: 3 - Alpha", + #"Environment :: Web Environment", + "Intended Audience :: Developers", + #"License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Topic :: Software Development :: Libraries :: Python Modules", + "Programming Language :: Python", + ], ) diff --git a/youmap/__init__.py b/youmap/__init__.py index e69de29b..253bd978 100644 --- a/youmap/__init__.py +++ b/youmap/__init__.py @@ -0,0 +1,7 @@ +"Create maps with OpenStreetMap layers in a minute and embed them in your site." +VERSION = (0, 0, 1) + +__author__ = 'Yohan Boniface' +__contact__ = "yb@enix.org" +__homepage__ = "https://bitbucket.org/yohanboniface/youmap_project" +__version__ = ".".join(map(str, VERSION))