mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 17:09:44 +00:00
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
# Copyright 2019 Mike Shoup
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from os import path
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
this_directory = path.abspath(path.dirname(__file__))
|
|
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
install_requires = [
|
|
'Flask==1.0.3',
|
|
]
|
|
|
|
setup(
|
|
name='humulus',
|
|
version='0.0.1',
|
|
url='https://github.com/shouptech/humulus',
|
|
author='Mike Shoup',
|
|
author_email='mike@shoup.io',
|
|
description='Humulus is a beer recipe builder.',
|
|
long_description=long_description,
|
|
long_description_content_type='text/x-rst',
|
|
package_dir={'': 'src'},
|
|
packages=find_packages(where='src'),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=install_requires,
|
|
setup_requires=install_requires + [
|
|
'pytest-runner',
|
|
],
|
|
tests_require=[
|
|
'pytest',
|
|
],
|
|
classifiers=[],
|
|
)
|