Initial commit

This commit is contained in:
Marcus Lindvall 2017-10-18 16:35:10 +02:00
commit 351d98c523
36 changed files with 1836 additions and 0 deletions

23
setup.py Executable file
View file

@ -0,0 +1,23 @@
# -*- 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'))
)