-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.13 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="Ben Hagen",
author_email="[email protected]",
description="Securely copy files to multiple destinations using source and destination verification.",
entry_points={"console_scripts": ["ocopy = ocopy.cli.ocopy:cli"]},
include_package_data=True,
install_requires=[
"click>=7.0",
"lxml>=4.4.1",
"xxhash>=1.4.2",
"defusedxml>=0.6.0",
"requests>=2.22.0",
],
dependency_links=[],
long_description=long_description,
long_description_content_type="text/markdown",
name="ocopy",
packages=find_packages(),
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=["pytest", "requests-mock", "pytest-mock"],
url="https://github.com/ottomatic-io/ocopy",
use_scm_version=True,
python_requires="~=3.7",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
],
)