-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.23 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (37 loc) · 1.23 KB
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
38
from setuptools import setup, find_packages
setup(
name='phasetools',
version='0.1.0',
author='Ben Knight',
author_email='ben.knight@curtin.edu.au',
description='A python package to perform MAGEMin calculations in python',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'pandas>=1.0.0',
'numpy>=1.18.0',
'matplotlib>=3.0.0',
'scipy>=1.4.0',
'molmass>=2024.0.0',
'juliacall>=0.9',
],
entry_points={
'console_scripts': [
'phasetools-julia-setup=phasetools.julia_setup:main',
],
},
license='LGPL-3.0-or-later',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Natural Language :: English',
],
python_requires='>=3.10',
)