-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 955 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 955 Bytes
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
from setuptools import setup, find_packages
# Read the content of README.md
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name = 'train_pytorch',
packages = find_packages(),
version = '0.0.4',
license='MIT',
description = 'Simple trainer for pytorch.',
long_description=long_description,
long_description_content_type = 'text/markdown',
author = 'Dat T Nguyen',
author_email = 'ndat@utexas.edu',
url = 'https://github.com/datngu/train_pytorch',
keywords = [
'artificial intelligence',
'deep learning',
'pytorch'
],
install_requires=[
'tqdm',
'scikit-learn',
'torch>=2.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
],
)