-
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.
Merge branch 'develop' into feature/sessions
# Conflicts: # idelib/dataset.py
- Loading branch information
Showing
18 changed files
with
136 additions
and
121,004 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
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 |
---|---|---|
|
@@ -5,12 +5,13 @@ | |
""" | ||
|
||
__author__ = "David Randall Stokes" | ||
__copyright__ = "Copyright (c) 2022 Midé Technology" | ||
__copyright__ = "Copyright (c) 2023 Midé Technology" | ||
|
||
__maintainer__ = "Midé Technology" | ||
__email__ = "[email protected]" | ||
|
||
__version__ = (3, 2, 4) | ||
__version__ = '3.2.9' | ||
|
||
__status__ = "Production/Stable" | ||
|
||
from .importer import importFile | ||
|
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
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,7 +1,21 @@ | ||
import codecs | ||
import os | ||
import setuptools | ||
|
||
with open('README.md', 'r', encoding='utf-8') as fh: | ||
long_description = fh.read() | ||
def read(rel_path): | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
with codecs.open(os.path.join(here, rel_path), 'r') as fp: | ||
return fp.read() | ||
|
||
|
||
def get_version(rel_path): | ||
for line in read(rel_path).splitlines(): | ||
if line.startswith('__version__'): | ||
delim = '"' if '"' in line else "'" | ||
return line.split(delim)[1] | ||
else: | ||
raise RuntimeError("Unable to find version string.") | ||
|
||
|
||
INSTALL_REQUIRES = [ | ||
'numpy', | ||
|
@@ -29,18 +43,17 @@ | |
|
||
setuptools.setup( | ||
name='idelib', | ||
version='3.2.7', | ||
version=get_version('idelib/__init__.py'), | ||
author='Mide Technology', | ||
author_email='[email protected]', | ||
description='Python API for accessing IDE data recordings', | ||
long_description=long_description, | ||
long_description=read('README.md'), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/MideTechnology/idelib', | ||
license='MIT', | ||
classifiers=['Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
|
Binary file not shown.
Oops, something went wrong.