-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f99cb3
commit 2de37cf
Showing
3 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.0-pre-alpha" | ||
__version__ = '0.1.0-alpha.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
from setuptools import setup | ||
import codecs | ||
import os.path | ||
from pathlib import Path | ||
|
||
|
||
here = os.path.abspath(os.path.dirname(__file__)) | ||
long_description = (here / "README.md").read_text() | ||
this_directory = Path(__file__).parent | ||
long_description = (this_directory / "README.md").read_text() | ||
|
||
|
||
def read(rel_path: str): | ||
|
@@ -30,9 +32,6 @@ def get_version(rel_path): | |
author='Firefox2100', | ||
author_email='[email protected]', | ||
description='A pure Python package to interface with SIM7600 modems.', | ||
install_requires=[ | ||
"pyserial", | ||
], | ||
long_description=long_description, | ||
long_description_content_type='text/markdown' | ||
) |