-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·57 lines (52 loc) · 2.27 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
57
#!/usr/bin/env python
#-----------------------------------------------------------------------------
# Copyright (c) 2013-2014, NeXpy Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING, distributed with this software.
#-----------------------------------------------------------------------------
from setuptools import setup, find_packages, Extension
import os, sys
import pkg_resources
pkg_resources.require('numpy')
import numpy
import versioneer
# pull in some definitions from the package's __init__.py file
sys.path.insert(0, os.path.join('src', ))
import nxremote
import nxremote.requires
verbose=1
setup (name = nxremote.__package_name__,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license = nxremote.__license__,
description = nxremote.__description__,
long_description = nxremote.__long_description__,
author=nxremote.__author_name__,
author_email=nxremote.__author_email__,
url=nxremote.__url__,
download_url=nxremote.__download_url__,
platforms='any',
install_requires = nxremote.requires.pkg_requirements,
package_dir = {'': 'src'},
packages = find_packages('src'),
entry_points={
# create & install scripts in <python>/bin
'console_scripts': ['nxstartserver=nxremote.pyro.start_server:main',
'globus_register=nxremote.pyro.globus_register:main'],
},
classifiers= ['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Visualization'],
)