-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
34 lines (31 loc) · 1.2 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
from setuptools import setup
import os
packages = []
for root, dirs, files in os.walk('.'):
if not root.startswith('./build') and '__init__.py' in files:
packages.append(root[2:])
long_description = open('README.md').read()
setup(
name = 'proxmin',
description = 'Proximal methods for constrained optimization',
long_description = long_description,
long_description_content_type='text/markdown',
packages = packages,
include_package_data=False,
version = '0.6.12',
license='MIT',
author = 'Peter Melchior, Fred Moolekamp',
author_email = '[email protected]',
url = 'https://github.com/pmelchior/proxmin',
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis"
],
keywords = ['optimization', 'constrained optimization', 'proximal algorithms', 'data analysis', 'non-negative matrix factorization'],
install_requires=['numpy','scipy']
)