-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix setup dep and move all in setup.cfg
- Loading branch information
1 parent
1a70584
commit 7a93375
Showing
3 changed files
with
28 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,4 @@ | ||
from setuptools import find_packages, setup | ||
from setuptools import setup | ||
|
||
import os | ||
import re | ||
|
||
|
||
# Recommendations from https://packaging.python.org/ | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
with open(os.path.join(here, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
|
||
def read(*parts): | ||
with open(os.path.join(here, *parts), "r") as fp: | ||
return fp.read() | ||
|
||
|
||
def find_version(*file_paths): | ||
version_file = read(*file_paths) | ||
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M) | ||
if version_match: | ||
return version_match.group(1) | ||
raise RuntimeError("Unable to find version string.") | ||
|
||
|
||
setup( | ||
name="e3nn_jax", | ||
version=find_version("e3nn_jax", "__init__.py"), | ||
description="Equivariant convolutional neural networks " | ||
"for the group E(3) of 3 dimensional rotations, translations, and mirrors.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://e3nn.org", | ||
packages=find_packages(exclude=["examples"]), | ||
install_requires=[ | ||
"jax", | ||
"dm-haiku", | ||
"flax", | ||
"optax", | ||
"sympy", | ||
"numpy", | ||
], | ||
include_package_data=True, | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires=">=3.7", | ||
license="MIT", | ||
license_files=["LICENSE"], | ||
) | ||
if __name__ == "__main__": | ||
setup() |