forked from PelicanPlatform/pelicanfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (53 loc) · 1.92 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
from setuptools import setup, find_packages
packages = find_packages()
print(packages)
setup(
name="pelicanfs",
version="1.0.2",
description="An FSSpec Implementation using the Pelican System",
url = "https://github.com/PelicanPlatform/pelicanfs",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
],
entry_points={
'fsspec.specs': [
'pelican=pelicanfs.core.PelicanFileSystem',
'osdf=pelicanfs.core.OSDFFileSystem'
],
},
keywords="pelican, fsspec",
packages=find_packages(
where='src',
include=['pelicanfs*'],
),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
package_dir={"": "src"},
python_requires=">=3.7, <4",
install_requires=["aiohttp~=3.9.4",
"aiosignal~=1.3.1",
"async-timeout~=4.0.3",
"attrs~=23.2.0",
"frozenlist~=1.4.1",
"fsspec~=2024.3.1",
"idna~=3.7",
"multidict~=6.0.5",
"yarl~=1.9.4",
"cachetools~=5.3"],
extras_require={
"testing": ["pytest", "pytest-httpserver", "trustme"],
},
project_urls={
"Source": "https://github.com/PelicanPlatform/pelicanfs",
"Pelican Source": "https://github.com/PelicanPlatform/pelican",
"Bug Reports":"https://github.com/PelicanPlatform/pelicanfs/issues"
},
)