2018-04-10 15:06:39 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
2018-06-23 10:13:20 +00:00
|
|
|
with open('README.md') as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2018-04-10 15:06:39 +00:00
|
|
|
setup(
|
2018-06-23 10:13:20 +00:00
|
|
|
name='ereuse-devicehub',
|
2018-07-02 10:52:54 +00:00
|
|
|
version='0.2.0a10',
|
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-12 14:50:05 +00:00
|
|
|
include_package_data=True,
|
2018-06-10 17:58:27 +00:00
|
|
|
description='A system to manage devices focusing reuse.',
|
2018-06-23 10:13:20 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2018-04-10 15:06:39 +00:00
|
|
|
install_requires=[
|
2018-07-02 10:52:54 +00:00
|
|
|
'teal>=0.2.0a6',
|
2018-04-10 15:06:39 +00:00
|
|
|
'marshmallow_enum',
|
2018-06-23 10:13:20 +00:00
|
|
|
'ereuse-utils[Naming]>=0.3.0b2',
|
2018-04-10 15:06:39 +00:00
|
|
|
'psycopg2-binary',
|
2018-05-30 10:49:40 +00:00
|
|
|
'requests',
|
|
|
|
'requests-toolbelt',
|
2018-06-20 21:18:15 +00:00
|
|
|
'hashids',
|
2018-07-02 10:52:54 +00:00
|
|
|
'click',
|
2018-06-21 15:39:40 +00:00
|
|
|
'click-spinner',
|
2018-06-23 10:13:20 +00:00
|
|
|
'sqlalchemy-utils[password, color, babel]',
|
2018-06-26 13:36:21 +00:00
|
|
|
'PyYAML',
|
|
|
|
'python-stdnum'
|
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-06-12 14:50:05 +00:00
|
|
|
]
|
2018-04-10 15:06:39 +00:00
|
|
|
)
|