-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (27 loc) · 952 Bytes
/
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
from setuptools import setup
def read_contents(fname):
with open(fname, encoding="utf-8") as f:
return f.read()
setup(
name="microstructure-mas",
version="0.2.6",
description=(
"Microstructure Modeling and Simulation."
" Generate microstructures using site-saturation condition,"
" and simulate grain growth using Monte Carlo Potts Model."
),
author="Neel Basak",
author_email="[email protected]",
license=read_contents("LICENSE"),
packages=["mmas", "mmas/core", "mmas/utils"],
package_data={"mmas": ["assets/icon.png"]},
install_requires=read_contents("requirements.txt").splitlines(),
entry_points={"console_scripts": ["mmas = mmas.__main__:main"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: GPL-3",
"Operating System :: OS Independent",
],
data_files=[("", ["LICENSE"])],
)