Initial commit
This commit is contained in:
commit
351d98c523
36 changed files with 1836 additions and 0 deletions
23
setup.py
Executable file
23
setup.py
Executable 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'))
|
||||
)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue