-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1 KB
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
#!/usr/bin/env python
import os
from setuptools import setup
setup(
name = "Hierarchical sparse coding (HSC)",
version = "1.0.0",
author = "Simon Brodeur",
author_email = "Simon.Brodeur@USherbrooke.ca",
description = ("Hierarchical sparse coding implementation in Python, and related theoretical analysis and datasets."),
license = "BSD 3-Clause License",
keywords = "signal processing, unsupervised learning, artificial intelligence, information compression",
url = "https://github.com/sbrodeur/hierarchical-sparse-coding",
packages=['hsc'],
setup_requires=['setuptools-markdown'],
install_requires=[
"setuptools-markdown",
"numpy",
"scipy",
"matplotlib",
],
long_description_markdown_filename='README.md',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
],
)