forked from CCP-NC/soprano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·84 lines (75 loc) · 3.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env python
"""
Soprano - A library for cracking crystals!
by Simone Sturniolo
"""
# Python 2-to-3 compatibility code
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
# The next line is removed because it causes issues in interpreting
# the package_data line, unfortunately
# from __future__ import unicode_literals
from setuptools import setup, find_packages
from soprano import __version__
long_description = """
Soprano is a Python library developed and maintained by the CCP for NMR
Crystallography as a tool to help scientists working with crystallography and
simulations to generate, manipulate, run calculations on and analyse large
data sets of crystal structures, with a particular attention to the output of
ab-initio random structure searching,
or AIRSS. (https://www.mtg.msm.cam.ac.uk/Codes/AIRSS)
It provides a number of functionalities to help automate many common tasks
in computational crystallography."""
if __name__ == '__main__':
setup(name='Soprano',
version=__version__,
description='A Python library to crack crystals',
long_description=long_description,
url='https://ccp-nc.github.io/soprano/',
author='Simone Sturniolo',
author_email='[email protected]',
license='LGPL',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Information Analysis',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU Library or Lesser General Public'
' License (LGPL)',
# Specify the Python versions you support here. In particular,
# ensure that you indicate whether you support Python 2, Python 3
# or both.
'Programming Language :: Python :: 3',
],
keywords=['crystallography', 'ccpnc', 'computational chemistry'],
packages=find_packages(),
# For data files. Example: 'soprano': ['data/*.json']
package_data={'soprano': ['data/*.json']},
entry_points={
'console_scripts': ['vasp2cell = '
'soprano.scripts.vasp2cell:__main__',
'soprano_submitter = '
'soprano.hpc.submitter:__main__',
'phylogen = '
'soprano.scripts.phylogen:__main__',
'magresaverage = '
'soprano.scripts.msaverage:__main__']
},
use_2to3=False,
convert_2to3_doctests=[],
# Requirements
install_requires=[
'numpy',
'scipy',
'ase'
],
python_requires='>=3.1.*'
)