|
Revision 994, 1.0 KB
(checked in by sunew, 3 years ago)
|
|
lets set svn:eol-style to native
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | from setuptools import setup, find_packages |
|---|
| 2 | |
|---|
| 3 | version = '0.1' |
|---|
| 4 | |
|---|
| 5 | setup(name='zgeo.primagisdemo', |
|---|
| 6 | version=version, |
|---|
| 7 | description="PrimaGIS demo product", |
|---|
| 8 | long_description="""\ |
|---|
| 9 | """, |
|---|
| 10 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 11 | classifiers=[ |
|---|
| 12 | "Framework :: Plone", |
|---|
| 13 | "Framework :: Zope2", |
|---|
| 14 | "Framework :: Zope3", |
|---|
| 15 | "Programming Language :: Python", |
|---|
| 16 | "Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 17 | ], |
|---|
| 18 | keywords='', |
|---|
| 19 | author='Sune Broendum Woeller', |
|---|
| 20 | author_email='sune@woeller.dk', |
|---|
| 21 | url='http://svn.gispython.org/svn/zope/zgeo.primagisdemo/', |
|---|
| 22 | license='GPL', |
|---|
| 23 | packages=find_packages(exclude=['ez_setup']), |
|---|
| 24 | namespace_packages=['zgeo'], |
|---|
| 25 | include_package_data=True, |
|---|
| 26 | zip_safe=False, |
|---|
| 27 | install_requires=[ |
|---|
| 28 | 'setuptools', |
|---|
| 29 | # -*- Extra requirements: -*- |
|---|
| 30 | ], |
|---|
| 31 | entry_points=""" |
|---|
| 32 | # -*- Entry points: -*- |
|---|
| 33 | """, |
|---|
| 34 | ) |
|---|