52 lines
1.4 KiB
Python
Raw Normal View History

2011-12-21 11:52:52 +01:00
from setuptools import setup, find_packages
2020-03-15 13:40:06 +01:00
with open('README.md') as f:
long_description = f.read()
2013-12-18 12:35:35 +01:00
2011-12-21 11:52:52 +01:00
setup(
2013-04-01 16:58:57 +02:00
name='dataset',
2020-03-15 14:07:19 +01:00
version='1.3.0',
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,
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",
2017-09-24 09:41:08 +02:00
'Programming Language :: Python :: 3.5',
2019-03-09 11:38:50 +01:00
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
2013-12-18 03:55:38 +01:00
],
2011-12-21 11:52:52 +01:00
keywords='sql sqlalchemy etl loading utility',
2014-02-12 12:28:04 +01:00
author='Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer',
2020-01-11 14:06:57 +01:00
author_email='friedrich.lindenberg@gmail.com',
2013-04-01 19:28:30 +02:00
url='http://github.com/pudo/dataset',
2011-12-21 11:52:52 +01:00
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,
install_requires=[
2020-03-15 14:07:19 +01:00
'sqlalchemy >= 1.3.0',
2020-01-11 14:06:57 +01:00
'alembic >= 0.6.2'
2017-09-29 14:11:07 +02:00
],
2020-03-15 13:24:19 +01:00
extras_require={
'dev': [
'pip',
'nose',
'wheel',
'flake8',
'coverage',
'psycopg2-binary',
'PyMySQL',
]
},
2017-09-29 14:11:07 +02:00
tests_require=[
'nose'
],
test_suite='test',
entry_points={}
2011-12-21 11:52:52 +01:00
)