-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 857 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
from setuptools import setup, find_packages
with open('./requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='Recursive_Symmetry_Aware_Materials_Microstructure_Explorer',
version='0.0.17',
packages=find_packages(where="src"),
url='',
install_requires=requirements,
license=' BSD-3-Clause',
author='Tri N. M. Nguyen, Yichen Guo, Shuyu Qin, Joshua C. Agar',
author_email='[email protected]',
description='Tool for recursive symmetry aware searching of materials microstructure images',
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir = {"": "src"},
python_requires = ">=3.6",
)