-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (30 loc) · 1.07 KB
/
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
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="tf-madgrad",
version="1.0.2",
description="A tf.keras implementation of the MADGRAD optimization algorithm",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DarshanDeshpande/tf-madgrad",
author="Darshan Deshpande",
author_email="darshan1504@gmail.com",
license="MIT",
python_requires=">=3.6.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=["madgrad"],
package_data={"madgrad": ["madgrad.py"]},
include_package_data=True,
install_requires=required,
)