From 83b091486668aac9fdf80eff1bd15ce0ac4273c4 Mon Sep 17 00:00:00 2001 From: Wolfgang Müller Date: Thu, 22 Apr 2021 18:54:05 +0200 Subject: Initial prototype --- setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b6149d0 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +import setuptools + +setuptools.setup( + name="quarg", + version="0.0.1", + author="Wolfgang Müller", + author_email="wolf@oriole.systems", + packages=setuptools.find_packages(), + python_requires=">=3.8", + + entry_points = { + 'console_scripts': [ + 'quarg = quarg.main:main', + ] + }, + + install_requires=[ + 'python-dateutil', + 'psycopg2', + 'sqlalchemy>=1.4', + ] +) -- cgit v1.2.3-2-gb3c3