-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1 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
from setuptools import setup, find_packages, Extension
from Cython.Build import cythonize
import numpy
# Define your Cython extensions
extensions = [
Extension("wiggle.writhe", ["cython_src/writhe_c.pyx"]),
# Add other extensions if any
]
# Use cythonize on the extensions
setup(
name='wiggle',
version='0.2',
packages=find_packages(),
ext_modules=cythonize(extensions),
include_dirs=[numpy.get_include()],
install_requires=[
'numpy',
'scipy',
'plotly',
'pandas',
'biobox',
'biopython',
'tqdm'
],
author='Josh McKeown', # Add author information
author_email = '[email protected]',
description = 'Package used in my No Loose Ends Lab, where I explore a subfield of mathematics known as knot theory, specifically a metric of self entanglement referred to as the writhe. Im looking into its potential as a geometrical representation to help solve real world problems such as proteins folding!'
)