-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from oscarbranson/dev
0.3.31 - Minor fixes for python updates
- Loading branch information
Showing
6 changed files
with
77 additions
and
28 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
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
from setuptools import setup, find_packages | ||
|
||
# bcause TravisCI was being a jerK | ||
try: | ||
from latools import __version__ | ||
except: | ||
__version__ = "version_missing" | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup(name='latools', | ||
version=__version__, | ||
description='Tools for LA-ICPMS data analysis.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/oscarbranson/latools', | ||
author='Oscar Branson', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=find_packages(), | ||
classifiers=['Development Status :: 4 - Beta', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
], | ||
python_requires='>3.6', | ||
install_requires=['numpy', | ||
'pandas', | ||
'matplotlib', | ||
'uncertainties', | ||
'scikit-learn', | ||
'scipy', | ||
'Ipython', | ||
'configparser', | ||
'tqdm' | ||
], | ||
package_data={ | ||
'latools': ['latools.cfg', | ||
'resources/*', | ||
'resources/data_formats/*', | ||
'resources/test_data/*'], | ||
}, | ||
zip_safe=False) |