-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.45 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
from setuptools import setup, find_packages
setup(
name="netlify-site-clone",
description="tool for cloning Netlify sites",
long_description=open("README.md").read(), # no "with..." will do for setup.py
long_description_content_type="text/markdown; charset=UTF-8; variant=GFM",
license="MIT",
author="Kyrylo Shpytsya",
author_email="[email protected]",
url="https://github.com/kshpytsya/netlify-site-clone",
install_requires=[
"click>=7.1.2,<8",
"click-log>=0.3.2,<1",
"dnspython>=1.16.0,<2",
"requests>=2.24.0,<3",
],
setup_requires=["setuptools_scm"],
use_scm_version=True,
python_requires=">=3.6, <3.10",
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={
"console_scripts": ["netlify-site-clone = netlify_site_clone._cli:main"]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: System :: Systems Administration",
],
)