forked from pycalphad/scheil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup
import os
def readme(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='scheil',
author='Brandon Bocklund',
author_email='brandonbocklund@gmail.com',
description='Scheil-Gulliver simulations using pycalphad.',
packages=['scheil'], # do not include _dev
license='MIT',
long_description=readme('README.rst'),
long_description_content_type='text/x-rst',
url='https://scheil.readthedocs.io/',
install_requires=[
'importlib_metadata', # drop for Python>=3.8
'numpy',
'scipy',
'setuptools_scm[toml]>=6.0',
'pycalphad>=0.10.0',
],
extras_require={
'dev': [
'furo',
'sphinx',
'pytest',
'twine',
],
},
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)