from setuptools import setup, find_packages setup( name="phi", version="0.0.1", description="Post-Human Interface", # license='', url="https://git.abbiamoundominio.org/unit/phi", author="unit", author_email="unit@paranoici.org", package_dir={"": "src"}, packages=find_packages("src"), entry_points={"console_scripts": ["phid=phi.app:cli"]}, setup_requires=["pytest-runner"], install_requires=[ "aiohttp==2.3.8", "click==7.0", "pyYAML", "ldap3", "bonsai==1.2.0", "passlib==1.7.1", "bcrypt==3.1.7", ], tests_require=["pytest", "pytest-aiohttp", "pytest-asyncio", "async-generator"], )