mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
44 lines
No EOL
1.2 KiB
Python
44 lines
No EOL
1.2 KiB
Python
from setuptools import setup, find_packages
|
|
from cbpi import __version__
|
|
|
|
setup(name='cbpi',
|
|
version=__version__,
|
|
description='CraftBeerPi',
|
|
author='Manuel Fritsch',
|
|
author_email='manuel@craftbeerpi.com',
|
|
url='http://web.craftbeerpi.com',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
package_data={
|
|
# If any package contains *.txt or *.rst files, include them:
|
|
'': ['*.txt', '*.rst', '*.yaml'],
|
|
'cbpi': ['*','*.txt', '*.rst', '*.yaml']},
|
|
|
|
install_requires=[
|
|
"aiohttp==3.7.3",
|
|
"aiohttp-auth==0.1.1",
|
|
"aiohttp-route-decorator==0.1.4",
|
|
"aiohttp-security==0.4.0",
|
|
"aiohttp-session==2.9.0",
|
|
"aiohttp-swagger==1.0.15",
|
|
"aiojobs==0.3.0",
|
|
"aiosqlite==0.16.0",
|
|
"cryptography==3.3.1",
|
|
"requests==2.25.1",
|
|
"voluptuous==0.12.1",
|
|
"pyfiglet==0.8.post1",
|
|
'pandas==1.1.5',
|
|
'click==7.1.2',
|
|
'shortuuid==1.0.1',
|
|
'tabulate==0.8.7',
|
|
'cbpi4-ui==0.0.3',
|
|
],
|
|
dependency_links=[
|
|
'https://testpypi.python.org/pypi'
|
|
],
|
|
entry_points = {
|
|
"console_scripts": [
|
|
"cbpi=cbpi.cli:main",
|
|
]
|
|
}
|
|
) |