-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 984 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 984 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
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="almapipo",
version="1.0.0",
description="Use Alma's REST APIs and store data in a Postgres DB.",
long_description=long_description,
url="https://github.com/gabriele-h/almapipo",
packages=find_packages(where="src"),
package_dir={'': 'src'},
scripts=[
'bin/db_create_tables',
'bin/delete_hol',
'bin/input_check',
'bin/locations_export',
'bin/update_by_csv',
'bin/update_record_element',
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.8.5',
install_requires=[
"psycopg2 ~= 2.8.0; sys_platform == 'linux'",
"psycopg2-binary ~= 2.8.0; sys_platform != 'linux'",
"pytest ~= 5.4.3",
"requests ~= 2.23.0",
"sqlalchemy ~= 1.4.21",
],
)