-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 802 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 802 Bytes
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
from setuptools import setup, find_packages
# To push to PyPi/pip, use
# python setup.py sdist bdist_wheel upload
setup(
name='OpenMatrix',
keywords='openmatrix omx',
version='0.3.5.0',
author='Billy Charlton, Ben Stabler',
author_email='billy@okbecause.com, benstabler@yahoo.com',
packages=find_packages(),
url='https://github.com/osPlanning/omx',
license='Apache',
description='OMX, the open matrix data format',
long_description=open('README.txt').read(),
install_requires=[
"tables >= 3.1.0",
"numpy >= 1.5.0",
],
classifiers=[
'License :: OSI Approved :: Apache Software License'
],
entry_points={
'console_scripts': [
'omx-validate = openmatrix.validator:command_line',
],
}
)