-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (39 loc) · 1.09 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
35
36
37
38
39
40
41
42
#! /usr/bin/env python
# stdlib
# stdlib
# stdlib
# stdlib
# stdlib
# stdlib
# stdlib
import codecs
# third party
from setuptools import find_packages, setup
with codecs.open("README.rst", encoding="utf-8") as f:
long_description = f.read()
setup(
name="lab-notebook",
version="3.3.3",
description="A utility for tracking, documenting, and reproducing software runs.",
long_description=long_description,
url="https://github.com/lobachevzky/lab-notebook",
author="Ethan Brooks",
author_email="ethanbrooks@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
keywords="tensorflow utilities development",
packages=find_packages(),
entry_points={
"console_scripts": [
"runs = runs.main:main",
"convert-to-db = runs.convert_to_db:main",
]
},
scripts=["runs-git"],
)