-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 889 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 889 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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup
def readme():
with open("README.md", "r") as fh:
return fh.read()
setup(
name="jlt",
version="0.1",
author="Ben Fauber",
author_email="[email protected]",
description="Johnson-Lindenstrauss transforms, random projections, and randomized Hadamard transforms in python 3.x",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/dell/jlt",
packages=['jlt'],
classifiers=[
"Programming Language :: Python :: 3.x",
"License :: Apache 2.0",
"Operating System :: OS Independent",
],
install_requires=[
'math',
'numpy',
'scipy.sparse',
'fht'
],
python_requires='>=3.4',
include_package_data=True,
zip_safe=False
)