-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 960 Bytes
/
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
with open("README.md", "r") as f:
long_description = f.read()
from setuptools import setup, find_packages
setup(
name="easyenvi",
version="1.0.8",
description="Easy-to-use functionality for managing files and data in different environments",
author="Antoine PINTO",
author_email="antoine.pinto1@outlook.fr",
license="MIT",
license_file="LICENSE",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AntoinePinto/easyenvi",
project_urls={
"Documentation": "https://antoinepinto.gitbook.io/easyenvi/",
"Source Code": "https://github.com/AntoinePinto/easyenvi",
},
keywords=[
"file-manager",
"easy-to-use",
"environment",
"cloud",
"gcp",
"sharepoint",
],
packages=find_packages(),
install_requires=[
"fsspec>=2023.1.0",
],
python_requires=">=3.7"
)