mirror of
https://github.com/wassname/PyCRS.git
synced 2026-06-27 16:10:29 +08:00
2c54836e92
I fixed line in order to allow installation via pip to my linux box. I change "\\" to "/". Setuptools documentation states: "Also notice that if you use paths, you must use a forward slash (/) as the path separator, even if you are on Windows. Setuptools automatically converts slashes to appropriate platform-specific separators at build time." Source: http://pythonhosted.org/setuptools/setuptools.html#including-data-files
16 lines
770 B
Python
16 lines
770 B
Python
try: from setuptools import setup
|
|
except: from distutils.core import setup
|
|
|
|
setup( long_description=open("README.rst").read(),
|
|
name="""PyCRS""",
|
|
license="""MIT""",
|
|
author="""Karim Bahgat""",
|
|
author_email="""karim.bahgat.norway@gmail.com""",
|
|
url="""http://github.com/karimbahgat/PyCRS""",
|
|
version="""0.1.2""",
|
|
keywords="""GIS spatial CRS coordinates format""",
|
|
packages=['pycrs', 'pycrs/elements'],
|
|
classifiers=['License :: OSI Approved', 'Programming Language :: Python', 'Development Status :: 4 - Beta', '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.""",
|
|
)
|