forked from stefsmeets/topas_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (38 loc) · 1.31 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
setup(
name="topas_tools",
version="0.1.3",
description="Set of tools to aid structure refinement with TOPAS",
author="Stef Smeets",
author_email="[email protected]",
license="GPL",
url="https://github.com/stefsmeets/topas_tools",
classifiers=[
'Programming Language :: Python :: 2.7',
],
packages=["topas_tools", "topas_tools.cif"],
install_requires=[
"matplotlib<3.0",
"numpy>=1.10",
"pandas>=0.23",
],
package_data={
"": ["LICENCE", "readme.md"]
},
entry_points={
'console_scripts': [
'fh2topas = topas_tools.fh2topas:main',
'topasrestraints = topas_tools.topas_restraints:main',
'topas_ndxan = topas_tools.topas_ndxan:main',
'restraints_statistics = topas_tools.restraints_statistics:main',
'cif2patterson = topas_tools.__main__:cif2patterson',
'cif2topas = topas_tools.__main__:cif2topas',
'expandcell = topas_tools.__main__:expandcell',
'stripcif = topas_tools.__main__:stripcif',
'topasdiff = topas_tools.__main__:topasdiff',
'make_superflip = topas_tools.__main__:make_superflip',
]
}
)