forked from KuroLabs/Airshare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.34 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
41
42
43
44
45
46
import setuptools
with open("PIP.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="Airshare",
version="0.1.6",
author="Kandavel A, Mohanasundar M, Nanda H Krishna",
author_email="[email protected]",
description="Cross-platform content sharing in a local network.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KuroLabs/airshare",
entry_points={
"console_scripts": ["airshare=airshare.cli:main"],
},
packages=[
"airshare",
],
include_package_data=True,
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
install_requires=[
"aiohttp >= 3.6.2",
"asyncio >= 3.4.3",
"click >= 7.0",
"colorama >= 0.4.3",
"humanize >= 0.5.1",
"pyperclip >= 1.8.0",
"requests >= 2.20.0",
"requests-toolbelt >= 0.9.1",
"termcolor >= 1.1.0",
"tqdm >= 4.36.1",
"zeroconf >= 0.25.0",
],
python_requires=">=3.6",
)