forked from Lukanet/PiWiFiSetup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.17 KB
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="PiWiFiSetup",
version="0.0.5",
author="Lukanet Ltd",
author_email="avramov@lukanet.com",
description="PiWiFiSetup is a program to headlessly configure a Raspberry Pi's WiFi connection using any other WiFi-enabled device",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Lukanet/PiWiFiSetup",
project_urls={
"Bug Tracker": "https://github.com/Lukanet/PiWiFiSetup/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU v3",
"Operating System :: OS Independent",
],
#package_dir={"": "src"},
#packages=setuptools.find_packages(where="src"),
packages=['PiWiFiSetup'],
python_requires=">=3",
install_requires=['Flask'],
include_package_data=True,
zip_safe=False,
entry_points = {
'console_scripts': ['PiWiFiSetup=PiWiFiSetup.PiWiFiSetup:main'],
},
options = {
'build_scripts': {
'executable': '/usr/bin/env python3',
}
}
)