2018-04-10 15:06:39 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
setup(
|
2018-06-10 17:58:27 +00:00
|
|
|
name="ereuse-devicehub",
|
2018-06-11 07:27:20 +00:00
|
|
|
version='0.2.0a3',
|
2018-04-10 15:06:39 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
url='https://github.com/ereuse/devicehub-teal',
|
|
|
|
license='Affero',
|
|
|
|
author='eReuse.org team',
|
|
|
|
author_email='x.bustamante@ereuse.org',
|
2018-06-10 17:58:27 +00:00
|
|
|
description='A system to manage devices focusing reuse.',
|
2018-04-10 15:06:39 +00:00
|
|
|
install_requires=[
|
2018-06-11 07:27:20 +00:00
|
|
|
'teal>=0.2.0a1',
|
2018-04-10 15:06:39 +00:00
|
|
|
'marshmallow_enum',
|
2018-06-11 07:27:20 +00:00
|
|
|
'ereuse-utils [Naming]>=0.3.0b1',
|
2018-04-10 15:06:39 +00:00
|
|
|
'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
|
|
|
],
|
2018-06-10 17:58:27 +00:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 2 - Pre-Alpha',
|
2018-04-10 15:06:39 +00:00
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Operating System :: OS Independent',
|
2018-06-10 17:58:27 +00:00
|
|
|
'Programming Language :: Python :: 3 :: Only',
|
2018-04-10 15:06:39 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2018-06-10 17:58:27 +00:00
|
|
|
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3'
|
|
|
|
],
|
2018-04-10 15:06:39 +00:00
|
|
|
)
|