Codebase list anosql / 5833c000-18d5-431f-9fd3-32e7a09203f7/upstream setup.py
5833c000-18d5-431f-9fd3-32e7a09203f7/upstream

Tree @5833c000-18d5-431f-9fd3-32e7a09203f7/upstream (Download .tar.gz)

setup.py @5833c000-18d5-431f-9fd3-32e7a09203f7/upstreamraw · history · blame

from setuptools import setup, find_packages

with open('README.rst') as readme_file:
    long_desc = readme_file.read()

setup(
    name='anosql',
    version='1.0.2',
    url='https://github.com/honza/anosql',
    install_requires=[],
    description='Easy SQL in Python',
    long_description=long_desc,
    author='Honza Pokorny',
    author_email='me@honza.ca',
    maintainer='Honza Pokorny',
    maintainer_email='me@honza.ca',
    packages=find_packages(),
    include_package_data=True
)