Skip to content

Commit

Permalink
added keywords and classifiers to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mfinzi committed Apr 12, 2021
1 parent 7dc5f78 commit f0be226
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from setuptools import setup,find_packages
import sys, os

README_FILE = 'README.md'

setup(name="emlp",
description="A Practical Method for Constructing Equivariant Multilayer Perceptrons for Arbitrary Matrix Groups",
version='0.8',
Expand All @@ -9,8 +11,22 @@
license='MIT',
python_requires='>=3.6',
install_requires=['h5py','objax','pytest',
'olive-oil-ml','optax','tqdm>=4.38'],
'olive-oil-ml','optax','tqdm>=4.38'],
packages=find_packages(),
long_description=open('README.md').read(),
long_description_content_type = 'text/markdown',
long_description_content_type='text/markdown',
url='https://github.com/mfinzi/equivariant-MLP',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords=[
'equivariance','MLP','symmetry','group','AI','neural network',
'representation','group theory','deep learning','machine learning',
'rotation','Lorentz invariance',
],

)

0 comments on commit f0be226

Please sign in to comment.