forked from LionNatsu/hilldust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (24 loc) · 838 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
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="hillstone-client",
version="1.0.2",
description="Simple Hillstone client for linux",
url="https://github.com/dankernel/hilldust",
author="dankernel, dsparch",
author_email="[email protected]",
license="GPL3.0",
packages=["hillstone_client"],
zip_safe=False,
install_requires=[
"cryptography==36.0.1",
"scapy==2.4.5"
],
scripts=["hillstone_client/hillstone-client"],
python_requires='>=3.8',
long_description=long_description,
long_description_content_type='text/markdown'
)