-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 945 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 945 Bytes
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
from setuptools import find_packages, setup
from os.path import join, dirname
with open(join(dirname(__file__), 'README.md')) as readme:
README = readme.read()
setup(
name='pygeopkg',
version='0.1.2',
author='Integrated Informatics Inc.',
author_email='gis@integrated-informatics.com',
description='A Python library that allows for the creation and population '
'of OGC GeoPackage databases with write access',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/realiii/pygeopkg',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
# 'Development Status :: 5 - Production/Stable',
],
packages=find_packages(exclude=('*tests',)),
)