-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (53 loc) · 1.93 KB
/
Copy pathsetup.py
File metadata and controls
59 lines (53 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"""
This package is not included in an OpenMDAO release. It's always present in
a 'dev' install, but to be used with a release it must be explicitly installed
after the release virtualenv has been activated.
It's just a place to collect all of the tools we use to build
openmdao docs, releases, etc., and a place to specify all of their
dependencies without forcing non-dev openmdao users to satisfy dependencies
that they don't need.
"""
# pylint: disable-msg=F0401
import os,sys
from setuptools import setup, find_packages
here = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, os.path.normpath(os.path.join(here,
'src',
'openmdao',
'devtools')))
import releaseinfo
version = releaseinfo.__version__
setup(name='openmdao.devtools',
version=version,
description="various scripts to build docs, create releases, etc.",
classifiers=[],
keywords='',
author='',
author_email='',
url='http://openmdao.org',
license='Apache License, Version 2.0',
namespace_packages=["openmdao"],
packages=find_packages('src'),
package_dir={'': 'src'},
test_suite='nose.collector',
zip_safe=False,
install_requires=[
'setuptools',
'Sphinx==1.2.2',
'Fabric==0.9.3',
'virtualenv',
'openmdao.util',
'boto',
'paramiko==2.10.1',
'requests',
],
entry_points = {
"console_scripts": [
"wingproj=openmdao.devtools.wingproj:run_wing",
"make_installer=openmdao.devtools.mkinstaller:main",
"release=openmdao.devtools.releasetools:release",
"push_dists=openmdao.devtools.push_dists:main",
"remote_build=openmdao.devtools.remote_build:main",
],
}
)