basic python package
This commit is contained in:
parent
7940d32803
commit
43c9905c1b
31
setup.py
Normal file
31
setup.py
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='sqlaload',
|
||||||
|
version='0.1',
|
||||||
|
description="Utility functions for using SQLAlchemy in ETL.",
|
||||||
|
long_description='',
|
||||||
|
classifiers=[
|
||||||
|
"Development Status :: 3 - Alpha",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
"Programming Language :: Python",
|
||||||
|
],
|
||||||
|
keywords='sql sqlalchemy etl loading utility',
|
||||||
|
author='Open Knowledge Foundation',
|
||||||
|
author_email='info@okfn.org',
|
||||||
|
url='http://okfn.org',
|
||||||
|
license='MIT',
|
||||||
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
||||||
|
namespace_packages=[],
|
||||||
|
include_package_data=False,
|
||||||
|
zip_safe=False,
|
||||||
|
install_requires=[
|
||||||
|
'sqlalchemy>=0.7',
|
||||||
|
'sqlalchemy-migrate>=0.7'
|
||||||
|
],
|
||||||
|
tests_require=[],
|
||||||
|
entry_points=\
|
||||||
|
""" """,
|
||||||
|
)
|
||||||
3
sqlaload/__init__.py
Normal file
3
sqlaload/__init__.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user