forked from Othoz/gcsfs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (49 loc) · 1.88 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
import os
from setuptools import setup
version_namespace = {}
with open("fs_gcsfs/_version.py") as f:
exec(f.read(), version_namespace) # nosec # pylint: disable=exec-used
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = "\n" + f.read()
if __name__ == "__main__":
setup(
name="fs-gcsfs",
version=version_namespace["__version__"],
author="Othoz GmbH",
author_email="[email protected]",
description="A PyFilesystem interface to Google Cloud Storage",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords=["pyfilesystem", "filesystem", "google", "gcs", "google cloud storage"],
url="https://github.com/Othoz/gcsfs",
project_urls={
"Bug Tracker": "https://github.com/Othoz/gcsfs/issues",
"Documentation": "http://fs-gcsfs.readthedocs.io/en/latest/",
},
packages=["fs_gcsfs"],
license="MIT",
python_requires=">=3.5",
install_requires=[
"fs~=2.0",
"google-cloud-storage~=1.0",
],
entry_points={
"fs.opener": [
"gs = fs_gcsfs.opener:GCSFSOpener",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation",
"Topic :: System :: Filesystems",
],
)