forked from abehmiel/Atomistic-Machine-Learning-Potentials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 615 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (19 loc) · 615 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env
from setuptools import setup
setup(
name = 'amp',
version = 'dev',
long_description = open('README.md').read(),
packages = ['amp', 'descriptor', 'regression', 'model'],
package_dir = {'amp': '.',
'descriptor' : 'descriptor',
'regression' : 'regression',
'model' : 'model',},
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
install_requires=['numpy>=1.7.0', 'matplotlib', 'ase'])