Skip to content

Commit

Permalink
Fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloLec committed Jul 20, 2021
1 parent b4625b1 commit fbfd5e3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
File renamed without changes.
3 changes: 3 additions & 0 deletions freebox_reboot/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import freebox_reboot

freebox_reboot.main()
File renamed without changes.
18 changes: 13 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setuptools
from setuptools import setup, find_packages

with open("requirements.txt", "r") as req_fp:
required_packages = req_fp.readlines()
Expand All @@ -7,27 +7,35 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
setup(
name="freebox_reboot",
version="1.0.0",
version="1.0.1",
author="Pablo Lecolinet",
author_email="[email protected]",
license="MIT License",
keywords="free freebox reboot",
description="Simple script pour redémarrer une Freebox",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PabloLec/freebox_reboot",
packages=find_packages(exclude=["tests", "docs"]),
project_urls={
"Bug Tracker": "https://github.com/PabloLec/freebox_reboot/issues",
},
entry_points={
"console_scripts": [
"freebox_reboot = freebox_reboot:main",
],
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
package_data={"": ["free.cert"]},
package_data={"freebox_reboot": ["free.cert"]},
include_package_data=True,
packages=setuptools.find_packages(where="src"),
install_requires=required_packages,
python_requires=">=3.6",
)

0 comments on commit fbfd5e3

Please sign in to comment.