53 lines
1.5 KiB
Python
Raw Normal View History

2011-12-21 11:52:52 +01:00
from setuptools import setup, find_packages
2020-08-02 12:52:11 +02:00
with open("README.md") as f:
2020-03-15 13:40:06 +01:00
long_description = f.read()
2013-12-18 12:35:35 +01:00
2011-12-21 11:52:52 +01:00
setup(
2020-08-02 12:52:11 +02:00
name="dataset",
2023-07-12 10:51:27 +02:00
version="1.6.2",
2017-09-15 01:22:40 +02:00
description="Toolkit for Python-based database access.",
2020-03-15 13:40:06 +01:00
long_description=long_description,
2020-08-02 12:52:11 +02:00
long_description_content_type="text/markdown",
2011-12-21 11:52:52 +01:00
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
2020-08-02 12:52:11 +02:00
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2020-12-30 22:28:12 +01:00
"Programming Language :: Python :: 3.9",
2013-12-18 03:55:38 +01:00
],
2020-08-02 12:52:11 +02:00
keywords="sql sqlalchemy etl loading utility",
author="Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer",
author_email="friedrich.lindenberg@gmail.com",
url="http://github.com/pudo/dataset",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "test"]),
2011-12-21 11:52:52 +01:00
namespace_packages=[],
include_package_data=False,
zip_safe=False,
2023-01-30 09:51:40 +01:00
install_requires=[
"sqlalchemy >= 1.3.2, < 2.0.0",
"alembic >= 0.6.2",
"banal >= 1.0.1",
],
2020-03-15 13:24:19 +01:00
extras_require={
2020-08-02 12:52:11 +02:00
"dev": [
"pip",
2021-10-30 12:06:58 +02:00
"pytest",
2020-08-02 12:52:11 +02:00
"wheel",
"flake8",
"coverage",
"psycopg2-binary",
"PyMySQL",
2020-08-23 13:48:01 +02:00
"cryptography",
2020-03-15 13:24:19 +01:00
]
},
2021-10-30 12:06:58 +02:00
tests_require=["pytest"],
2020-08-02 12:52:11 +02:00
test_suite="test",
entry_points={},
2011-12-21 11:52:52 +01:00
)