2019-04-15 18:27:22 +02:00
|
|
|
from setuptools import setup, find_packages
|
2017-12-16 23:03:03 +01:00
|
|
|
|
2017-12-24 12:38:38 +01:00
|
|
|
|
2017-12-16 23:03:03 +01:00
|
|
|
setup(
|
|
|
|
name='phi',
|
|
|
|
version='0.0.1',
|
|
|
|
|
|
|
|
description='Post-Human Interface',
|
|
|
|
# license='',
|
2019-04-12 16:25:36 +02:00
|
|
|
url='https://git.abbiamoundominio.org/unit/phi',
|
2017-12-16 23:03:03 +01:00
|
|
|
|
|
|
|
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"]},
|
2017-12-16 23:03:03 +01:00
|
|
|
|
2017-12-24 12:38:38 +01:00
|
|
|
setup_requires=['pytest-runner'],
|
2019-04-28 12:31:19 +02:00
|
|
|
install_requires=['aiohttp==2.3.8', 'click==7.0', 'pyYAML', 'ldap3', 'bonsai==1.1.0'],
|
2019-04-19 15:58:09 +02:00
|
|
|
tests_require=['pytest', 'pytest-aiohttp', 'pytest-asyncio', 'async-generator']
|
2017-12-16 23:03:03 +01:00
|
|
|
)
|