-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (43 loc) · 1.69 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
from setuptools import setup, find_packages
import codecs
import os
# Get package version
version = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'irods_iscc/version.py')) as file:
exec(file.read(), version)
# Get description
with codecs.open('README.md', 'r', 'utf-8') as file:
long_description = file.read()
setup(name='python-irodsclient-iscc',
version=version['__version__'],
author='Leonardo Lenoci',
author_email='[email protected]',
description='An ISCC plugin for iRODS python client (PRC)',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD',
url='https://github.com/ll4strw/python-irodsclient-iscc',
keywords='irods',
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: POSIX :: Linux',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
# iRODS
'python-irodsclient>=2.0.0',
# iscc
'iscc-core',
'iscc-schema',
'python-magic'
]
)