forked from irods/irods_capability_automated_ingest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (53 loc) · 1.83 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
import codecs
from os import path
# Get package version
version = {}
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'irods_capability_automated_ingest/version.py')) as f:
exec(f.read(), version)
# Get the long description from the README file
with codecs.open(path.join(here, 'README.md'), 'r', 'utf-8') as f:
long_description = f.read()
setup(
name='irods-capability-automated-ingest',
version=version['__version__'],
description='Implement filesystem scanners and landing zones',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/irods/irods_capability_automated_ingest',
author='iRODS Consortium',
author_email='[email protected]',
license='BSD',
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5',
'Operating System :: POSIX :: Linux'
],
keywords='irods automated ingest landingzone filesystem',
packages=find_packages(),
install_requires=[
'minio',
'flask',
'flask-restful',
'python-irodsclient>=0.8.0',
'python-redis-lock>=3.2.0',
'redis>=2.10.6, <3.0.0',
'celery[redis]>=4.2.1, <4.3.0',
'scandir',
'structlog>=18.1.0',
'progressbar2',
'billiard>=3.5.0.2, <3.6.0'
],
setup_requires=['setuptools>=38.6.0'],
entry_points={
'console_scripts': [
'irods_capability_automated_ingest=irods_capability_automated_ingest.irods_sync:main'
],
},
project_urls={
'Bug Reports': 'https://github.com/irods/irods_capability_automated_ingest/issues',
'Source': 'https://github.com/irods/irods_capability_automated_ingest'
},
)