forked from Tsjerk/Insane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (36 loc) · 1.3 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
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from __future__ import print_function, absolute_import
from setuptools import setup
# Read the version from a file to be sure it is consistent with the version
# in the package.
with open('insane/VERSION.txt') as infile:
version = infile.readline().strip()
setup(
name='insane',
version=version,
description="A versatile tool for building membranes and/or solvent with proteins.",
url='https://github.com/Tsjerk/Insane',
# Author details
author='Tsjerk A. Wassenaar',
license='GPLv2',
classifiers=[
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
install_requires=['numpy', 'simopt'],
tests_requires=['nose'],
packages=['insane'],
package_data={'insane': ['VERSION.txt', '*.dat', 'data/*.dat']},
entry_points={
'console_scripts': [
'insane = insane.cli:cli',
],
},
)