-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 843 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
30
31
32
33
34
35
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
from __future__ import print_function
from setuptools import setup, find_packages
setup(
name="local_transfer_file",
version="0.0.2",
keywords=("local transfer file", "qr code"),
description="local transfer file",
long_description="eds sdk for python",
license="MIT Licence",
url="https://github.com/woshimanong1990/local_file_share",
author="ant",
author_email="qinghelanzhu@gmail.com",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=[
"PyQt5",
"qrcode",
"psutil"
],
scripts=[],
entry_points={
'console_scripts': [
'local_transfer_file = local_transfer_file.main:main'
]
}
)