forked from neuroailab/pt_framework
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 659 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 659 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
from setuptools import setup, find_packages
setup(
name = 'pt_framework',
package_dir={"": "src"},
packages=find_packages("src"),
version = '1.0.0',
license='MIT',
description = 'Pytorch Training Framework',
long_description_content_type = 'text/markdown',
keywords = [
'artificial intelligence',
'deep learning',
],
install_requires=[
'pymongo',
'GitPython',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)