-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (36 loc) · 1.26 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
from setuptools import find_packages, setup
with open("README.md") as file:
long_description = file.read()
setup(
name="tlc",
version="0.1",
description="Trap limited conversion efficiency analysis for photovoltaic materials",
url="https://github.com/WMD-group/TrapLimitedConversion",
author="TLC Developers",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
],
keywords="solar cells, photovoltaics",
test_suite="nose.collector",
packages=find_packages(),
# Specify any non-python files to be distributed with the package
#package_data={'examples': ['*']}, # include all files
include_package_data=True,
install_requires=[
"scipy>=1.6",
"numpy",
"matplotlib",
"pymatgen"
],
data_files=["LICENSE"],
)