23 lines
602 B
Python
23 lines
602 B
Python
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.1.0'],
|
|
tests_require=['pytest', 'pytest-aiohttp', 'pytest-asyncio', 'async-generator']
|
|
)
|