-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 780 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 780 Bytes
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
# Copyright (c) Gradient Institute. All rights reserved.
# Licensed under the Apache 2.0 License.
"""Setup LSOC repo."""
from setuptools import setup, find_packages
setup(
name="lsoc",
version="0.1.0",
# Package discovery
package_dir={"": "src"},
packages=find_packages(where="src"),
# Package dependencies defined inline
install_requires=[
"numpy",
"scipy",
"pandas",
"plotly",
"autograd",
"scikit-learn",
],
# Python version compatibility
python_requires=">=3.8",
# Package metadata
author="Gradient Institute and Timaeus",
author_email="alistair.reid@gradientinstitute.org",
license="Apache License 2.0",
description="Analysis tools for latent capabilities.",
)