-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
45 lines (44 loc) · 1.25 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
from setuptools import setup
from glob import glob
setup(
name='rmsgd',
use_scm_version=True,
version="1.0.2",
packages=['rmsgd'],
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
url='https://github.com/mahdihosseini/RMSGD',
python_requires='>=3.6',
install_requires=[
"numpy>=1.20.2",
"scipy>=1.6.2",
"torch>=1.8.1",
],
extras_require={
'docs': [
'sphinx',
'sphinx_rtd_theme',
'recommonmark',
],
},
dependency_links=[
],
setup_requires=[
# 'setuptools_scm', # for git-based versioning
],
# DO NOT do tests_require; just call pytest or python -m pytest.
license='License :: Other/Proprietary License',
author='Mahdi Hosseini and Mathieu Tuli',
author_email='mahdi.hosseini@mail.utoronto.ca',
description='Python package for RMSGD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3',
],
scripts=glob('bin/*'),
)