-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 962 Bytes
/
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
import themis
import os
from setuptools import setup, find_packages
setup(
name='themis',
version=themis.__version__,
description="Library for processing themis images",
url="https://github.com/kelvinrr/themis",
author="Kelvin Rodriguez",
author_email='[email protected]',
license="Public Domain",
keywords='themis mars odyssey',
package_dir={'themis': 'themis'},
packages=find_packages(),
install_requires =[
'pandas',
'pysis',
'pyyaml',
'scipy'
],
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering',
]
)