aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2017-05-24 14:42:13 -0400
committerMatt Rendina <mrendina@stsci.edu>2017-05-24 14:42:13 -0400
commit2a4958e9e8389edc2b8e117e1d45635706bbec1b (patch)
treebf8f1615a258ac63fe6dc2727002c0747b48e52a /setup.py
parent74c2df4ffc24688e74ce90eb4f41e1db8ef272c4 (diff)
downloadrambo-2a4958e9e8389edc2b8e117e1d45635706bbec1b.tar.gz
Bludgenoning into shape for desired package behavior
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..0c54664
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,28 @@
+from setuptools import setup, find_packages
+
+version = {}
+with open("rambo/_version.py") as fp:
+ exec(fp.read(), version)
+ # later on use: version['__version__']
+
+setup(
+ name='rambo',
+ version=version['__version__'],
+ author='Matt Rendina',
+ author_email='mrendina@stsci.edu',
+ description='Recipe Analyzer and Multi-package Build Optimizer',
+ url='https://github.com/astroconda/rambo',
+ license='GPLv2',
+ classifiers=[
+ 'License :: OSI Approved :: BSD License',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python',
+ 'Natural Language :: English',
+ 'Topic :: Software Development :: Build Tools',
+ ],
+ packages=find_packages(),
+ package_data={'': ['README.md', 'LICENSE.txt']},
+ entry_points = {
+ 'console_scripts': ['rambo=rambo.__main__:main'],
+ }
+)