2017-12-16 23:03:03 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
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'},
|
|
|
|
packages=['phi', 'phi.api', 'phi.ldap'],
|
2017-12-23 14:44:16 +01:00
|
|
|
scripts=['src/phid'],
|
2017-12-16 23:03:03 +01:00
|
|
|
|
2017-12-24 12:38:38 +01:00
|
|
|
setup_requires=['pytest-runner'],
|
2020-09-30 12:43:15 +02:00
|
|
|
install_requires=['pyYAML', 'ldap3'],
|
|
|
|
tests_require=['pytest']
|
2017-12-16 23:03:03 +01:00
|
|
|
)
|