-
-
Notifications
You must be signed in to change notification settings - Fork 81
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
Showing
2 changed files
with
18 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
setup.cfg | ||
setup.py | ||
isotp/__init__.py |
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,14 +1,25 @@ | ||
from distutils.core import setup | ||
from setuptools import setup, find_packages | ||
from codecs import open | ||
from os import path | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(here, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name = 'can-isotp', | ||
packages = ['can-isotp'], | ||
version = '0.1', | ||
packages = ['isotp'], | ||
version = '0.1.0', | ||
description = 'Wrapper for Python 3.7+ simplifying the usage of Oliver Herktopp\'s Linux kernel module enabling ISO-15765 sockets', | ||
long_description=long_description, | ||
author = 'Pier-Yves Lessard', | ||
author_email = '[email protected]', | ||
license='MIT', | ||
url = 'https://github.com/pylessard/python-can-isotp', | ||
download_url = 'https://github.com/pylessard/python-can-isotp/archive/v0.1.tar.gz', | ||
keywords = ['isotp', 'can', 'iso-15765', '15765', 'iso15765'], | ||
python_requires='>=3.7', | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
|