forked from pedroramaciotti/Cloudtropy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 834 Bytes
/
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
"""`setup.py`"""
from setuptools import setup, find_packages
# # Package requirements
# with open('requirements.txt') as f:
# INSTALL_REQUIRES = [l.strip() for l in f.readlines() if l]
INSTALL_REQUIRES=[
'numpy',
'scikit-learn',
'scipy',
'matplotlib'
]
setup(name='cloudtropy',
version='0.0.2',
description='Empirical probability mass functions and entropies of N-dimensional clouds of points.',
author='Pedro Ramaciotti Morales',
author_email='[email protected]',
url = 'https://github.com/pedroramaciotti/Cloudtropy',
download_url = 'https://github.com/pedroramaciotti/Cloudtropy/archive/0.0.1.tar.gz',
keywords = ['entropy','probabilities','entropy of points'],
packages=find_packages(),
data_files=[('', ['LICENSE'])],
install_requires=INSTALL_REQUIRES)