-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 1.22 KB
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
"""Uses setuptools to install the ignite_simple module"""
import setuptools
import os
setuptools.setup(
name='ignite_simple',
version='0.0.12a',
author='Timothy Moore',
author_email='mtimothy984@gmail.com',
description='Easily train pytorch models with automatic LR and BS tuning',
license='CC0',
keywords='torch pytorch models machine-learning learning-rate batch-size hyperparameters',
url='https://github.com/tjstretchalot/ignite-simple',
packages=['ignite_simple', 'ignite_simple.gen_sweep'],
package_data={'ignite_simple': ['html/*']},
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.md')).read(),
long_description_content_type='text/markdown',
install_requires=['pca3dvis', 'torch', 'numpy', 'matplotlib', 'scipy',
'pyzmq', 'beautifulsoup4', 'pytorch-ignite', 'psutil',
'sortedcontainers'],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Topic :: Utilities'],
python_requires='>=3.6',
)