mirror of
https://github.com/echemdata/galvani.git
synced 2025-12-14 17:15:36 +00:00
Changed to a standard setuptools package layout
This commit is contained in:
20
setup.py
Normal file
20
setup.py
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='galvani',
|
||||||
|
version='0.0.1a1',
|
||||||
|
description='Open and process battery charger log data files',
|
||||||
|
url='https://github.com/chatcannon/galvani',
|
||||||
|
author='Chris Kerr',
|
||||||
|
license='GPLv3+',
|
||||||
|
classifiers=[
|
||||||
|
'Development Status :: 3 - Alpha',
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'Intended Audience :: Science/Research',
|
||||||
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
||||||
|
'Natural Language :: English'],
|
||||||
|
packages=['galvani'],
|
||||||
|
install_requires='numpy'
|
||||||
|
)
|
||||||
@@ -8,8 +8,8 @@ import numpy as np
|
|||||||
from numpy.testing import assert_array_almost_equal, assert_array_equal
|
from numpy.testing import assert_array_almost_equal, assert_array_equal
|
||||||
from nose.tools import ok_, eq_, raises
|
from nose.tools import ok_, eq_, raises
|
||||||
|
|
||||||
from .. import MPTfile, MPRfile
|
from galvani import MPTfile, MPRfile
|
||||||
from ..BioLogic import MPTfileCSV, str3 # not exported
|
from galvani.BioLogic import MPTfileCSV, str3 # not exported
|
||||||
|
|
||||||
testdata_dir = os.path.join(os.path.dirname(__file__), 'testdata')
|
testdata_dir = os.path.join(os.path.dirname(__file__), 'testdata')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user