forked from AlexiMartin/ElPiGraph.P
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 759 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(name='elpigraph',
version='0.91',
description='Python implementation of Elpigraph',
long_description=read_md('README.md'),
url='https://github.com/LouisFaure/ElPiGraph.P',
author='Alexi Martin',
author_email='',
packages=['elpigraph.core_algorithm','elpigraph'],
package_dir={'elpigraph': 'elpigraph'},
package_data={'elpigraph': ['data/*.csv']},
install_requires=[
'numpy','matplotlib','scipy'
],
zip_safe=False)