-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (40 loc) · 1.35 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
#!/usr/bin/env python
"""OnedataRESTFS is a PyFilesystem implementation for Onedata."""
from setuptools import setup
__version__ = '21.2.5.2'
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Topic :: System :: Filesystems",
]
with open("README.md", "rt") as f:
DESCRIPTION = f.read()
REQUIREMENTS = ["fs", "onedatafilerestclient"]
setup(
name="fs.onedatarestfs",
author="Bartek Kryza",
author_email="bkryza@gmail.com",
classifiers=CLASSIFIERS,
description="Onedata REST-based filesystem for PyFilesystem",
install_requires=REQUIREMENTS,
license="MIT",
long_description=DESCRIPTION,
long_description_content_type='text/markdown',
packages=["fs.onedatarestfs"],
keywords=["pyfilesystem", "Onedata"],
test_suite="nose.collector",
url="https://github.com/onedata/onedatarestfs",
version=__version__,
entry_points={
"fs.opener":
["onedatarestfs = fs.onedatarestfs.opener:OnedataRESTFSOpener"]
},
)