-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (27 loc) · 914 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
from setuptools import setup,find_packages
import sys
if sys.version_info[:2] < (3,0):
raise SystemExit('Python 3 required')
setup(
name='ccs',
version="0.1.0",
url="https://github.com/aksam432/CCS",
description=" A Python package for fitting two-body potentials using curvature constrained splines",
author="Akshay Krishna AK",
author_email="[email protected]",
platforms=['unix'],
include_package_data=True,
packages=find_packages(),
license='GPLv3',
scripts=['bin/atom-json','bin/ccs_fit'],
install_requires=[
"cvxopt==1.2.4",
"matplotlib==3.0.3",
"numpy>=1.18.1",
"pandas==0.24.2",
"scipy",
"ase>=3.19.0"
],
keywords = ['Two-body Potentials', 'optimisation', 'Force Field'],
classifiers=[],
)