-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.32 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
# Copyright (c) 2019 Toyota Research Institute
from setuptools import setup, find_packages
DESCRIPTION = "a module that supports an event-sourced system of tracking parameterizations of methods."
LONG_DESCRIPTION = """
taburu (after テーブル) is a module for using hashed arrays as parameter tables
developed by the
[Toyota Research Institute's AMDD division](http://www.tri.global/accelerated-materials-design-and-discovery/).
It's primary purpose is to use event sourcing and hashed parameter tables
to ensure that prior methods can be accounted for when doing new experiments.
"""
setup(
name='taburu',
version="2020.3.26",
packages=find_packages(),
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/TRI-AMDD/taburu',
license='Apache',
author='joseph.montoya',
author_email='joseph.montoya@tri.global',
maintainer='joseph.montoya',
maintainer_email='joseph.montoya@tri.global',
install_requires=["monty>=3.0.2",
"indexed.py==0.0.1",
"tqdm>=4.31.1",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)