This repository was archived by the owner on Dec 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (55 loc) · 1.75 KB
/
setup.py
File metadata and controls
58 lines (55 loc) · 1.75 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
49
50
51
52
53
54
55
56
57
58
import setuptools
from setuptools.extension import Extension
from Cython.Build import cythonize
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = open('README.md').read()
setuptools.setup(
name='isambard',
packages=setuptools.find_packages(),
# This code automatically builds the Cython extensions.
ext_modules=cythonize(
[Extension(
"isambard.tools.geometry",
["isambard/tools/geometry.pyx"]),
Extension(
"isambard.buff.calculate_energy",
["isambard/buff/calculate_energy.pyx"],
include_dir=["isambard/buff/"],
language='c++'),
Extension(
"isambard.ampal.specifications.polymer_specs.ta_polypeptide",
[("isambard/ampal/specifications/polymer_specs/"
"ta_polypeptide.pyx")]),
]),
include_package_data=True,
version='2017.3.0',
description=(
'ISAMBARD: An open-source computational environment for'
' biomolecular analysis, modelling and design'),
long_description=long_description,
author='Woolfson Group, University of Bristol',
author_email='isambardinfo@gmail.com',
url='https://github.com/woolfson-group/isambard/',
download_url='https://github.com/woolfson-group/isambard/tarball/2017.3.0',
keywords=['isambard', 'biomolecule', 'parametric',
'modelling', 'bristol', 'woolfson'],
install_requires=[
'Cython',
'numpy',
'requests',
'SQLAlchemy',
'networkx',
'deap',
'matplotlib',
'hypothesis',
'pyreadline',
'bs4',
'parmed',
'recommonmark',
'numpydoc',
'pypandoc'
]
)