-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="geopycat",
version="0.4.0",
author="Benoit G. Regamey",
author_email="[email protected]",
description="Manage metadata and data of geocat.ch - a geonetwork instance for Switzerland",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'requests >=2.25.1',
'urllib3 >=1.26.6',
'python-dotenv >=0.20.0',
'psycopg2-binary >= 2.9.9',
'pandas >= 1.2.3',
'colorama >= 0.4.5',
'python-dateutil >= 2.8.1',
'lxml >= 4.8.0'
],
scripts=[
'bin/geocat_backup.py',
'bin/geocat_backup',
'bin/delete_unused_subtpl.py',
'bin/delete_unused_subtpl',
'bin/save_and_close.py',
'bin/save_and_close',
'bin/restore_mef.py',
'bin/restore_mef'
]
)