-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
32 lines (31 loc) · 1019 Bytes
/
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
from setuptools import setup
setup(
name='fgdb2postgis',
version=__import__('fgdb2postgis').get_current_version(),
description="""ESRI file geodatabase to PostGIS converter""",
long_description=open('README.rst').read(),
author='George Ioannou',
author_email='[email protected]',
url='https://github.com/cartologic/fgdb2postgis',
packages=['fgdb2postgis'],
package_data={'fgdb2postgis': ['sql_files/*.sql']},
include_package_data=True,
install_requires=[
'numpy>=1.18.1',
'psycopg2>=2.8.5',
'ruamel.yaml>=0.16.10',
'awesome-slugify>=1.6.5'
],
license="GNU",
keywords='fgdb2postgis',
classifiers=[
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
'Operating System :: Microsoft :: Windows'
],
entry_points={
'console_scripts': ['fgdb2postgis = fgdb2postgis.__main__:main']
},
)