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"),
|
2019-04-15 18:27:22 +02:00
|
|
|
entry_points={"console_scripts": ["phid=phi.app:cli"]},
|
2019-07-13 11:39:06 +02:00
|
|
|
setup_requires=["pytest-runner"],
|
|
|
|
install_requires=[
|
|
|
|
"aiohttp==2.3.8",
|
|
|
|
"click==7.0",
|
|
|
|
"pyYAML",
|
|
|
|
"ldap3",
|
2020-08-31 10:11:20 +02:00
|
|
|
"bonsai==1.2.0",
|
2019-07-13 11:39:06 +02:00
|
|
|
"passlib==1.7.1",
|
|
|
|
"bcrypt==3.1.7",
|
|
|
|
],
|
|
|
|
tests_require=["pytest", "pytest-aiohttp", "pytest-asyncio", "async-generator"],
|
2017-12-16 23:03:03 +01:00
|
|
|
)
|