-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 984 Bytes
/
setup.py
File metadata and controls
37 lines (33 loc) · 984 Bytes
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
import os
import io
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
with io.open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8") as f:
return f.read()
setup(
name="autobaddie",
version="v0.1.0",
author="Jurgis Ruza, Pablo Lean, William Harris",
description=("Classical force field parameter predictor"),
license="MIT",
url="https://github.com/learningmatter-mit/AutoBADDIE",
packages=find_packages("."),
long_description=read("README.md"),
install_requires=[
"numpy",
"matplotlib",
"seaborn",
"pandas",
"torch",
"rdkit",
"scipy",
"networkx",
"munch",
"scikit-learn",
"ipykernel",
],
)