-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (35 loc) · 996 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
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
import os
from setuptools import setup, find_packages
try:
with open('README.rst') as f:
readme = f.read()
except IOError:
readme = ''
def _requires_from_file(filename):
return open(filename).read().splitlines()
# version
here = os.path.dirname(os.path.abspath(__file__))
version = "0.0.6"
setup(
name="novograd",
version=version,
url='https://github.com/convergence-lab/novograd',
author='Masashi Kimura',
author_email='[email protected]',
maintainer='Masashi Kimura',
maintainer_email='[email protected]',
description='PyTorch implementation of NovoGrad',
long_description=readme,
packages=find_packages(),
install_requires=[
"torch >= 1.2.0"
],
license="Apache License 2.0",
classifiers=[
'License :: OSI Approved :: Apache Software License',
],
)