You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phi/setup.py

23 lines
473 B

from setuptools import setup
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=['phi', 'phi.api', 'phi.ldap'],
scripts=['src/phid', 'src/phicli'],
setup_requires=['pytest-runner'],
install_requires=['pyYAML', 'ldap3'],
tests_require=['pytest']
)