-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (33 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (33 loc) · 1.15 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
#!/usr/bin/env python3
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('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='GPL-2.0-or-later',
classifiers=[
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3'
],
install_requires=['numpy', 'simopt>=0.4.0', 'setuptools<82'],
tests_requires=['nose'],
packages=['insane'],
package_data={'insane': ['VERSION.txt', '*.dat', 'data/*.dat']},
entry_points={
'console_scripts': [
'insane = insane.cli:cli',
],
},
)