-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (34 loc) · 1.04 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
# -*- coding: utf-8 -*-
"""pySTK - Python wrappers for Sierra Toolkit (STK)
"""
from skbuild import setup
VERSION = "0.0.1"
classifiers = [
"Development Status :: 3 -Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics"
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
]
setup(
name="pySTK",
version=VERSION,
url="https://github.com/sayerhs/pystk",
license="Apache License, Version 2.0",
description="Python-wrapper for Sierra Toolkit (STK)",
long_description=__doc__,
author="Shreyas Ananthan",
platforms="any",
classifiers=classifiers,
include_package_data=True,
packages=[
'stk'
],
)