Skip to content

Commit b1168cf

Browse files
committedNov 26, 2017
Updated release files
1 parent 5bc8191 commit b1168cf

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed
 

‎MANIFEST

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py
4+
isotp/__init__.py

‎setup.py

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
1-
from distutils.core import setup
1+
from setuptools import setup, find_packages
2+
from codecs import open
3+
from os import path
4+
5+
here = path.abspath(path.dirname(__file__))
6+
7+
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
8+
long_description = f.read()
9+
210
setup(
311
name = 'can-isotp',
4-
packages = ['can-isotp'],
5-
version = '0.1',
12+
packages = ['isotp'],
13+
version = '0.1.0',
614
description = 'Wrapper for Python 3.7+ simplifying the usage of Oliver Herktopp\'s Linux kernel module enabling ISO-15765 sockets',
15+
long_description=long_description,
716
author = 'Pier-Yves Lessard',
817
author_email = 'py.lessard@gmail.com',
18+
license='MIT',
919
url = 'https://github.com/pylessard/python-can-isotp',
1020
download_url = 'https://github.com/pylessard/python-can-isotp/archive/v0.1.tar.gz',
1121
keywords = ['isotp', 'can', 'iso-15765', '15765', 'iso15765'],
22+
python_requires='>=3.7',
1223
classifiers = [
1324
"Programming Language :: Python",
1425
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)
Please sign in to comment.