-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (27 loc) · 1.01 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
try:
from setuptools import setup
except:
from distutils.core import setup
from distutils.extension import Extension
contactlooper = Extension('latticeproteins.contactlooper', sources = ['latticeproteins/contactlooper.c'])
setup(
name = 'latticeproteins',
fullname = 'Lattice Protein Simulation Package',
version = '0.2',
author = 'Jesse D. Bloom and Zach Sailer',
author_email = 'zachsailer@gmail.com',
description = 'Code for lattice protein simulations.',
url='https://github.com/zsailer/latticeproteins',
packages = ['latticeproteins'],
ext_modules = [contactlooper],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)