-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.33 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
43
44
45
46
#! /usr/bin/env python
# Author: Alexander Fabisch <[email protected]>
# License: BSD 3 clause
from setuptools import setup
import batch_gmr
def setup_package():
setup(
name="batch-gmr",
version=batch_gmr.__version__,
author="Akshay L Chandra",
author_email="[email protected]",
url="https://github.com/acl21/batch-gmr",
description="Batch Gaussian Mixture Regression",
long_description=open("README.rd").read(),
license="new BSD",
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=["batch-gmr"],
install_requires=[
"numpy==1.24.5",
"scipy==1.14.1",
"gmr==1.6.2",
"torch==2.0.1",
],
)
if __name__ == "__main__":
setup_package()