This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-04-10 15:06:39 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="eReuse_Devicehub",
|
|
|
|
version='0.0.1',
|
|
|
|
packages=find_packages(),
|
|
|
|
url='https://github.com/ereuse/devicehub-teal',
|
|
|
|
license='Affero',
|
|
|
|
author='eReuse.org team',
|
|
|
|
author_email='x.bustamante@ereuse.org',
|
|
|
|
description='A system to manage devices focused in reusing them.',
|
|
|
|
install_requires=[
|
|
|
|
'teal',
|
|
|
|
'marshmallow_enum',
|
|
|
|
'ereuse-utils [Naming]',
|
|
|
|
'psycopg2-binary',
|
2018-05-30 10:49:40 +00:00
|
|
|
'sqlalchemy-utils',
|
|
|
|
'requests',
|
|
|
|
'requests-toolbelt',
|
|
|
|
'hashids'
|
2018-04-10 15:06:39 +00:00
|
|
|
],
|
|
|
|
tests_requires=[
|
|
|
|
'pytest',
|
2018-05-30 10:49:40 +00:00
|
|
|
'pytest-datadir',
|
|
|
|
'requests_mock'
|
2018-04-10 15:06:39 +00:00
|
|
|
],
|
|
|
|
classifiers={
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
|
|
},
|
|
|
|
)
|