forked from mvernacc/material-properties-interchange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.24 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.24 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
39
40
41
42
43
44
45
46
47
48
49
50
"""Standard python setup script for materials."""
import setuptools
INSTALL_REQUIRES = [
'numpy',
'scipy',
'pyyaml',
'asteval',
]
TEST_REQUIRES = [
'pytest',
'coverage',
'pytest-cov',
'matplotlib',
]
DOCS_REQUIRES = [
'sphinx',
'sphinx_rtd_theme',
'sphinxcontrib-napoleon',
]
with open('README.md', 'r') as fh:
LONG_DESCRIPTION = fh.read()
with open('LICENSE.md', 'r') as fh:
LICENSE = fh.read()
setuptools.setup(
name='materials',
version='0.0.0',
author='Matthew Vernacchia',
author_email='mvernacc@mit.edu',
description='Material properties database',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/mvernacc/material-properties-interchange',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
install_requires=INSTALL_REQUIRES,
extras_require={
'test': TEST_REQUIRES + INSTALL_REQUIRES,
'docs': DOCS_REQUIRES + INSTALL_REQUIRES,
},
keywords='material analysis-script engineering material-properties mmpds',
license=LICENSE,
include_package_data=True,
)