-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (46 loc) · 1.63 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
#!/usr/bin/env python
import os
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(HERE, 'swan', '__version__.py')) as f:
exec(f.read(), version)
with open('README.rst') as readme_file:
README = readme_file.read()
setup(
name='swan',
version=version['__version__'],
description="",
long_description=README + '\n\n',
long_description_content_type='text/markdown',
author="Felipe Zapata",
author_email='[email protected]',
url='https://github.com/nlesc-nano/swan',
package_dir={'swan': 'swan'},
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'requests',
'e3nn@git+https://github.com/e3nn/e3nn@main',
'equivariant_attention@git+https://github.com/nlesc-nano/se3-transformer-public@dev',
'gpytorch', 'h5py', 'mendeleev', 'numpy', 'pandas', 'pyyaml', 'scikit-learn',
'scipy', 'seaborn', 'schema',
'torch-geometric'
],
extras_require={
'test': ['coverage', 'mypy', 'pycodestyle', 'pytest>=3.9', 'pytest-cov',
'pytest-mock'],
'doc': ['sphinx', 'sphinx-autodoc-typehints', 'sphinx_rtd_theme',
'nbsphinx']
}
)