PyJeeves/setup.py

32 lines
738 B
Python
Executable file

# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='pyjeeves',
version='0.0.1',
description='PyJeeves syncronization module',
long_description=readme,
author='Marcus Lindvall',
author_email='marcus.lindvall@lindvallskaffe.se',
url='https://gitlab.lndvll.se/lindvallskaffe/pyjeeves',
license=license,
packages=find_packages(exclude=('tests', 'docs', 'sample', 'env', 'migrations')),
install_requires=[
'nose',
'sphinx',
'pymssql',
'sqlalchemy',
'sqlservice',
'PyMySQL',
'alembic',
'pyyaml',
]
)