-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·48 lines (43 loc) · 1.46 KB
/
setup.py
File metadata and controls
executable file
·48 lines (43 loc) · 1.46 KB
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
45
46
47
48
#!/usr/bin/env python3
import Cython.Build
import numpy
import setuptools
import setuptools.extension
_DIRECTIVES = {'language_level': '3'}
setuptools.setup(
name='evosimz',
author='Zhengting Zou, Hongjiu Zhang, Yuanfang Guan, Jianzhi Zhang',
author_email='ztzou@umich.edu, zhanghj@umich.edu, '
'gyuanfan@umich.edu, jianzhi@umich.edu',
keywords='bioinformatics',
python_requires='>=3.6.0',
packages=setuptools.find_packages(exclude=['tests']),
ext_modules=Cython.Build.cythonize(
[setuptools.extension.Extension('*', ['evosimz/*.pyx'])],
compiler_directives=_DIRECTIVES,
),
include_dirs=[numpy.get_include()],
entry_points={
'console_scripts': [
'evosimz = evosimz.simulators:_entrypoint',
],
},
package_data={
'utils': ['*.pxd', '*.pyx'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Cython',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)