diff options
author | Wolfgang Müller | 2021-04-22 18:54:05 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-04-28 20:15:33 +0200 |
commit | 83b091486668aac9fdf80eff1bd15ce0ac4273c4 (patch) | |
tree | 2e27b1dbe693c2e88f1686b61406c4e1e5dd5bd7 /setup.py | |
download | quarg-83b091486668aac9fdf80eff1bd15ce0ac4273c4.tar.gz |
Initial prototype
Diffstat (limited to '')
-rw-r--r-- | setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
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', + ] +) |