-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (40 loc) · 1.33 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
"""OnedataFS is a Python client to Onedata virtual filesystem."""
from setuptools import setup
__version__ = '21.02.8'
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Filesystems",
]
with open("README.rst", "rt") as f:
DESCRIPTION = f.read()
REQUIREMENTS = ["fs", "six"]
setup(
name="fs.onedatafs",
author="Bartek Kryza",
author_email="[email protected]",
classifiers=CLASSIFIERS,
description="Onedata filesystem for PyFilesystem2",
install_requires=REQUIREMENTS,
license="MIT",
long_description=DESCRIPTION,
packages=["fs.onedatafs"],
keywords=["pyfilesystem", "Onedata", "oneclient"],
platforms=["linux"],
test_suite="nose.collector",
url="https://github.com/onedata/fs-onedatafs",
version=__version__,
entry_points={
"fs.opener": ["onedatafs = fs.onedatafs.opener:OnedataFSOpener"]
},
)