-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 969 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
setup(
name='aorun',
version='0.1',
description='Deep Learning over PyTorch',
author='Ramon Oliveira',
author_email='[email protected]',
url='https://github.com/ramon-oliveira/aorun',
license='MIT',
keywords='neural-networks deep-learning pytorch',
install_requires=[
'numpy>=1.10',
'tqdm>=4.11',
'requests>=2.12',
'torch>=0.1.10',
],
extra_requires={
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
]
},
packages=find_packages(),
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Development Status :: 3 - Alpha',
]
)