-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 815 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
from setuptools import setup
with open("sending/version.py", "r") as infile:
exec(infile.read())
setup(
name="sending",
version=__version__, # type: ignore
url="https://github.com/ehatton/sending",
author="Emma Hatton-Ellis",
author_email="[email protected]",
license="MIT",
packages=["sending"],
install_requires=[
"click",
"colorama; platform_system=='Windows'",
"paramiko",
"requests",
],
python_requires=">=3.7",
entry_points={"console_scripts": ["sending=sending.cli:cli",],},
classifiers=[
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
],
)