File: setup.py

package info (click to toggle)
python-dataset 1.6.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: python: 1,420; makefile: 162
file content (52 lines) | stat: -rw-r--r-- 1,564 bytes parent folder | download
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
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages

with open("README.md") as f:
    long_description = f.read()

setup(
    name="dataset",
    version="1.6.2",
    description="Toolkit for Python-based database access.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
    ],
    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"]),
    namespace_packages=[],
    include_package_data=False,
    zip_safe=False,
    install_requires=[
        "sqlalchemy",
        "alembic >= 0.6.2",
        "banal >= 1.0.1",
    ],
    extras_require={
        "dev": [
            "pip",
            "pytest",
            "wheel",
            "flake8",
            "coverage",
            "psycopg2-binary",
            "PyMySQL",
            "cryptography",
        ]
    },
    tests_require=["pytest"],
    test_suite="test",
    entry_points={},
)