forked from WMD-group/CZTS-model
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.29 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
from setuptools import setup, find_packages
version="v1.0.0"
DESCRIPTION = 'A chalcogenide package'
LONG_DESCRIPTION = 'A package that makes it easy to convert values between several units of measurement'
setup(
name="ChacolgenideGrowth",
version=version,
install_requires=[
"numpy",
"monty",
],
description="Chalcogenide growth thermodynamics",
author="Zhenzhu Li",
author_email="[email protected]",
download_url="https://github.com/WMD-group/ChalcogenideGrowth.git",
license="MIT",
packages=find_packages(),
keywords=[
"materials",
"science",
"thermodynamics"
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)