-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (37 loc) · 1.05 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
35
36
37
38
39
40
41
42
43
44
import setuptools
import glob
from Cython.Build import cythonize
import Cython.Compiler.Options
Cython.Compiler.Options.annotate = True
def readme():
with open('README.md') as f:
return f.read()
def scripts():
return glob.glob('bin/*.sh') + glob.glob('bin/*.py')
setuptools.setup(
name='tesser',
version='0.1.0',
description='Package for analyze Tesser community structure experiment.',
long_description=readme(),
long_description_content_type="text/markdown",
license='GPLv3',
url='http://github.com/prestonlab/tesser_successor',
packages=setuptools.find_packages('tesser'),
install_requires=[
'numpy',
'scipy',
'networkx',
'matplotlib',
'pandas',
'seaborn',
'cython',
'mindstorm',
],
scripts=scripts(),
ext_modules=cythonize(['tesser/csr.pyx',
'tesser/cfit.pyx']),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
]
)