-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.13 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
"""
:package:`rocha` -- Raster and vector manipulation
==================================================
.. package:: rocha
:platform: Unix, Windows
:synopsis:
.. packageauthor::
"""
import setuptools
def readme():
with open('README.md') as source:
return source.read()
setuptools.setup(name='rocha',
version='0.1',
description='Raster and vector manipulation.',
long_description='Manipulation of the raster datasets and vector geometries.',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: GIS'
],
keywords='funniest joke comedy flying circus',
url='https://github.com/rochamatcomp/python-rocha',
author='Andre Rocha',
author_email='<rocha.matcomp@gmail.com>',
license='MIT',
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
include_package_data=True,
install_requires=[
'rasterio',
'fiona'
],
zip_safe=False)