-
Notifications
You must be signed in to change notification settings - Fork 14
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
3f02c56
commit 43eefc1
Showing
2 changed files
with
40 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# DO NOT EDIT THIS FILE! | ||
# This file has been autogenerated by dephell <3 | ||
# https://github.com/dephell/dephell | ||
|
||
try: | ||
from setuptools import setup | ||
except ImportError: | ||
from distutils.core import setup | ||
|
||
import os.path | ||
|
||
readme = '' | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
readme_path = os.path.join(here, 'README.md') | ||
if os.path.exists(readme_path): | ||
with open(readme_path, 'rb') as stream: | ||
readme = stream.read().decode('utf8') | ||
|
||
setup( | ||
long_description=readme, | ||
long_description_content_type='text/markdown', | ||
name='aioserial', | ||
version='1.2.3', | ||
description='An asynchronous serial port library of Python', | ||
python_requires='==3.*,>=3.6.0', | ||
project_urls={"homepage": "https://github.com/changyuheng/aioserial"}, | ||
author='Henry Chang', | ||
author_email='[email protected]', | ||
license='MPL-2.0', | ||
packages=['aioserial'], | ||
package_dir={"": "src"}, | ||
package_data={}, | ||
install_requires=['pyserial'], | ||
) |