-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (37 loc) · 1.15 KB
/
setup.py
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
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command
from version import __version__
dependencies = ['click']
setup(
name='delorean_postgresql_importer',
version=__version__,
description='Library to import ESRI Shapefiles \
into a PostgreSQL database.',
url='https://github.com/Project-DeLorean/delorean_postgresql_importer',
author='Tobias Preuss',
author_email="[email protected]",
packages=[
'delorean_postgresql_importer',
],
license='AGPLv3+',
install_requires=dependencies,
long_description=open('README.rst').read(),
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: \
GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
entry_points={
'console_scripts': [
'delorean_postgresql_importer = \
delorean_postgresql_importer.cli:import_shapefiles'
]
},
)