33 lines
757 B
Python
Executable file
33 lines
757 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 communication 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-py38',
|
|
'sqlalchemy',
|
|
'sqlservice',
|
|
'PyMySQL',
|
|
'alembic',
|
|
'pyyaml',
|
|
'gtin'
|
|
]
|
|
)
|