-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 690 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 690 Bytes
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
from setuptools import setup, find_packages
def get_description():
with open("README.md") as file:
return file.read()
setup(
name="sftpgo-client",
version="0.3.1",
url="https://github.com/ramnes/sftpgo-client",
author="Guillaume Gelin",
author_email="contact@ramnes.eu",
description="Python client for the SFTPGo API",
long_description=get_description(),
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.6, <4",
install_requires=[
"httpx >= 0.23.0",
"attrs >= 21.3.0",
"python-dateutil >= 2.8.0, < 3",
],
package_data={"sftpgo_client": ["py.typed"]},
)