-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
16 lines (15 loc) · 847 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
try: from setuptools import setup
except: from distutils.core import setup
setup( long_description=open("README.md").read(),
long_description_content_type="text/markdown",
name="""PyCRS""",
license="""MIT""",
author="""Karim Bahgat""",
author_email="""karim.bahgat.norway@gmail.com""",
url="""http://github.com/karimbahgat/PyCRS""",
version="""1.0.2""",
keywords="""GIS spatial CRS projection coordinate system format""",
packages=['pycrs', 'pycrs/elements'],
classifiers=['License :: OSI Approved', 'Programming Language :: Python', 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'Intended Audience :: End Users/Desktop', 'Topic :: Scientific/Engineering :: GIS'],
description="""GIS package for reading, writing, and converting between CRS formats.""",
)