forked from AlexanderFabisch/gmr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.26 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
#! /usr/bin/env python
# Author: Alexander Fabisch <[email protected]>
# License: BSD 3 clause
from setuptools import setup
import gmr
VERSION = gmr.__version__
def setup_package():
setup(
name="gmr",
version=VERSION,
author="Alexander Fabisch",
author_email="[email protected]",
url="https://github.com/AlexanderFabisch/gmr",
description="Gaussian Mixture Regression",
long_description=open("README.rst").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 :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
],
packages=["gmr"],
requires=["numpy", "scipy"],
)
if __name__ == "__main__":
setup_package()