21 lines
453 B
Python
21 lines
453 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='phi',
|
||
|
version='0.0.1',
|
||
|
|
||
|
description='Post-Human Interface',
|
||
|
# license='',
|
||
|
url='https://git.unit.macaomilano.org/unit/panel',
|
||
|
|
||
|
author='unit',
|
||
|
author_email='unit@paranoici.org',
|
||
|
|
||
|
package_dir={'': 'src'},
|
||
|
packages=['phi', 'phi.api', 'phi.ldap'],
|
||
|
scripts=['src/phi.py'],
|
||
|
|
||
|
install_requires=['aiohttp', 'pyYAML', 'ldap3'],
|
||
|
tests_require=['pytest', 'pytest-aiohttp']
|
||
|
)
|