-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
73 lines (70 loc) · 1.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- coding: utf-8 -*-
from setuptools import setup
__author__ = "Martin Uhrin"
__contributors__ = "Sonia Collaud"
__license__ = "GPLv3"
about = {}
with open("milad/version.py") as f:
exec(f.read(), about) # nosec
setup(
name="milad",
version=about["__version__"],
description="Moment Invariants Local Atomic Descriptor",
long_description=open("README.rst").read(),
url="https://github.com/muhrin/milad.git",
author="Martin Uhrin",
author_email="[email protected]",
license=__license__,
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="machine learning, atomic descriptor, moment invariants",
python_requires=">=3.6",
install_requires=[
"dscribe",
"matplotlib",
"miniball",
"numba",
"numpy",
"rmsd",
"torch",
"scipy",
"sympy",
"scikit-learn",
"scikit-image",
"typing-extensions",
],
extras_require={
"dev": [
"ipython",
"pip",
"pytest~=7.2",
"pytest-cov",
"pre-commit~=2.2",
"twine",
],
# 'functorch':
# ['torch==1.9.0.dev20210604', 'functorch @ git+https://github.com/zou3519/functorch.git#egg=functorch']
},
dependency_links=[
"https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html"
],
packages=[
"milad",
"milad.dat",
"milad.descriptors",
"milad.models",
"milad.optimisers",
"milad.play",
"milad.invariants",
],
include_package_data=True,
test_suite="test",
entry_points={
"mincepy.plugins.types": ["milad_types = milad.provides:get_mince_types"],
},
)