-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
23 lines (20 loc) · 861 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
setup(
name = "SISSOkit",
version = "0.2.2",
description = "Modules for cross validation, evaluation and plot of SISSO",
long_description = "SISSOkit is a Python library for analysis of SISSO, \
including generating cross validation files, \
analyzing results, plotting. Data structures of SISSOkit \
are mainly numpy array, pandas DataFrame or Series and Python \
built-in data structure like list, so you can easily build \
your own code based on SISSOkit.",
license = "Apache Licence",
url = "https://github.com/LeGenDXXX/SISSOkit",
author = "Chuanqi Xu",
author_email = "[email protected]",
packages = find_packages(),
platforms = "any",
install_requires = ['numpy','pandas','matplotlib'],
include_package_data=True,
)