forked from gmggroup/omf-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.27 KB
/
setup.py
File metadata and controls
44 lines (40 loc) · 1.27 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
#!/usr/bin/env python
"""omf: API Library for Open Mining Format"""
from distutils.core import setup
from setuptools import find_packages
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Natural Language :: English",
]
with open("README.rst") as f:
LONG_DESCRIPTION = "".join(f.readlines())
setup(
name="omf",
version="2.0.0a0",
packages=find_packages(exclude=("tests",)),
install_requires=[
"numpy>=1.7",
"properties==0.6.0b0",
"pypng",
"vectormath>=0.2.0",
],
author="Global Mining Guidelines Group",
author_email="info@gmggroup.org",
description="API Library for Open Mining Format",
long_description=LONG_DESCRIPTION,
keywords="mining data interchange",
url="https://gmggroup.org",
download_url="https://github.com/gmggroup/omf",
classifiers=CLASSIFIERS,
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
license="MIT License",
use_2to3=False,
)