2019-04-15 18:27:22 +02:00
|
|
|
from setuptools import setup, find_packages
|
2017-12-16 23:03:03 +01:00
|
|
|
|
|
|
|
setup(
|
2019-07-13 11:39:06 +02:00
|
|
|
name="phi",
|
|
|
|
version="0.0.1",
|
|
|
|
description="Post-Human Interface",
|
2017-12-16 23:03:03 +01:00
|
|
|
# license='',
|
2019-07-13 11:39:06 +02:00
|
|
|
url="https://git.abbiamoundominio.org/unit/phi",
|
|
|
|
author="unit",
|
|
|
|
author_email="unit@paranoici.org",
|
|
|
|
package_dir={"": "src"},
|
2019-04-28 12:31:19 +02:00
|
|
|
packages=find_packages("src"),
|
2022-02-03 12:59:52 +01:00
|
|
|
entry_points={"console_scripts": ["phid=phi.web.app:cli"]},
|
2019-07-13 11:39:06 +02:00
|
|
|
setup_requires=["pytest-runner"],
|
|
|
|
install_requires=[
|
2022-01-25 23:51:10 +01:00
|
|
|
"aiohttp==3.8.1",
|
2022-02-02 17:29:13 +01:00
|
|
|
"aiohttp_session[secure]==2.11.0",
|
2019-07-13 11:39:06 +02:00
|
|
|
"click==7.0",
|
|
|
|
"pyYAML",
|
2022-01-25 23:51:10 +01:00
|
|
|
"bonsai==1.3.0",
|
2019-07-13 11:39:06 +02:00
|
|
|
"passlib==1.7.1",
|
2022-01-25 23:51:10 +01:00
|
|
|
"bcrypt==3.2.0",
|
2019-07-13 11:39:06 +02:00
|
|
|
],
|
|
|
|
tests_require=["pytest", "pytest-aiohttp", "pytest-asyncio", "async-generator"],
|
2022-01-25 23:51:10 +01:00
|
|
|
python_requires=">=3.9",
|
2017-12-16 23:03:03 +01:00
|
|
|
)
|