-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.01 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
import os
from setuptools import find_packages, setup
# Get description from README
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, "README.md"), "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="chemicalmotifidentifier",
version="0.0.10",
long_description=long_description,
long_description_content_type="text/markdown",
author="Killian Sheriff",
author_email="ksheriff@mit.edu",
description="Chemical Motif Identifier",
url="https://github.com/killiansheriff/ChemicalMotifIdentifier",
packages=find_packages(),
install_requires=[
"e3nn",
"matplotlib",
"networkx",
"numpy",
"ovito",
"pandas",
"scikit_learn",
"scipy",
# "torch_geometric",
"tqdm",
"NshellFinder",
"polyaenum",
'nsimplex',
# "torch==2.0.1",
# "torch_scatter==2.1.2",
'lovelyplots'
],
classifiers=[],
include_package_data=True,
)