forked from lewisamarshall/ionize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.36 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
# Read version from package.
# from ionize.__version__ import __version__
__version__ = '1.5.1'
setup(name='ionize',
version=__version__,
author='Lewis A. Marshall',
author_email='lewis.a.marshall@gmail.com',
url="http://lewisamarshall.github.io/ionize/",
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Chemistry",
],
use_2to3=False,
license='LICENSE',
description='A package for calculating electrolyte properties.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
requires=['numpy', 'scipy', 'biopython', 'click'],
package_data={'ionize': ['Database/ion_data.json']},
entry_points={'console_scripts': ['ionize = ionize.__main__:cli']},
test_suite="ionize.tests",
install_requires=["numpy",
"scipy",
"pandas",
"biopython",
"click",
],
)