forked from jennhsiao/ideotype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 812 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
import glob
from setuptools import setup
setup_args = {
"name": "ideotype",
"author": "Jennifer Hsiao",
"url": "https://github.com/jennhsiao/ideotype",
"license": "MIT",
"description": "maizsim ideotype project",
"package_dir": {"ideotype": "ideotype"},
"packages": ["ideotype"],
"scripts": glob.glob("scripts/*"),
"use_scm_version": True,
"include_package_data": True,
"install_requires": ["numpy",
"pandas",
"matplotlib",
"pyyaml",
"setuptools_scm",
"sqlalchemy",
"timezonefinder",
"sklearn"]
# TODO: add more install_requires here
}
if __name__ == "__main__":
setup(**setup_args)