-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
34 lines (30 loc) · 908 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
from codecs import open
from setuptools import find_packages, setup
REPO_URL = "https://github.com/mandarons/icloudpy"
VERSION = "0.7.0"
with open("README.md") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
required = fh.read().splitlines()
setup(
name="icloudpy",
version=VERSION,
author="Mandar Patil",
author_email="[email protected]",
description="Python library to interact with iCloud web service",
long_description=long_description,
long_description_content_type="text/markdown",
url=REPO_URL,
package_dir={".": ""},
packages=find_packages(exclude=["tests"]),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=required,
entry_points="""
[console_scripts]
icloud=icloudpy.cmdline:main
""",
)