-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
56 lines (53 loc) · 1.63 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
###############################################################################
# -*- coding: utf-8 -*-
# Order: A tool to characterize the local structure of liquid water
# by geometric order parameters
#
# Authors: Pu Du
#
# Released under the MIT MIT License
###############################################################################
from setuptools import setup, find_packages
import order
import os
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='iOrder',
version='0.0.3',
description='A tool to characterize the local structure of liquid water by geometric order parameters',
long_description=readme(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
],
keywords=['order parameter', 'water structure'],
author='Pu Du',
author_email='[email protected]',
maintainer='Pu Du',
maintainer_email='[email protected]',
url='https://github.com/ipudu/order',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'order = order.order:command_line_runner',
]
},
install_requires=[
'numpy',
'six',
'progress',
'scipy',
'matplotlib',
'pyyaml',
],
)