Skip to content

Commit

Permalink
Updated release files
Browse files Browse the repository at this point in the history
  • Loading branch information
pylessard committed Nov 26, 2017
1 parent 5bc8191 commit b1168cf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
4 changes: 4 additions & 0 deletions MANIFEST
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
17 changes: 14 additions & 3 deletions setup.py
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",
Expand Down

0 comments on commit b1168cf

Please sign in to comment.