-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
29 lines (26 loc) · 997 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
26
27
28
29
# Persistence-capable sheaf manipulation library setup script
#
# Copyright (c) 2017, Michael Robinson
# This software comes with no warrantees express or implied
from setuptools import setup
#from Cython.Build import cythonize
def readme():
with open('README') as f:
return f.read()
setup(name='pysheaf',
version='0.3.1',
description='Python applied sheaf computation library',
url='http://github.com/kb1dds/pysheaf',
author='Michael Robinson and Brenda Praggastis and Janelle Henrich',
author_email='[email protected]',
license='MIT',
packages=['pysheaf'],
install_requires=['scipy >= 1.0','numpy','networkx','deap','pdoc'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Mathematics',
],
# ext_modules=cythonize('pysheaf/pysheaf.py'),
zip_safe=False)