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.
devicehub-teal/setup.py

48 lines
1.4 KiB
Python
Raw Normal View History

2018-04-10 15:06:39 +00:00
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
2018-04-10 15:06:39 +00:00
setup(
name='ereuse-devicehub',
2018-06-25 15:31:28 +00:00
version='0.2.0a8',
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.',
long_description=long_description,
long_description_content_type='text/markdown',
2018-04-10 15:06:39 +00:00
install_requires=[
2018-06-25 15:31:28 +00:00
'teal>=0.2.0a5',
2018-04-10 15:06:39 +00:00
'marshmallow_enum',
'ereuse-utils[Naming]>=0.3.0b2',
2018-04-10 15:06:39 +00:00
'psycopg2-binary',
'requests',
'requests-toolbelt',
2018-06-20 21:18:15 +00:00
'hashids',
'tqdm',
2018-06-21 15:39:40 +00:00
'click-spinner',
'sqlalchemy-utils[password, color, babel]',
2018-06-21 15:39:40 +00:00
'PyYAML'
2018-04-10 15:06:39 +00:00
],
tests_requires=[
'pytest',
'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
)