-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (29 loc) · 935 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
from setuptools import setup, find_packages
version = {}
with open("rambo/_version.py") as fp:
exec(fp.read(), version)
# use: version['__version__'] to access
setup(
name='rambo',
version=version['__version__'],
author='Matt Rendina',
author_email='[email protected]',
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'],},
install_requires=[
'jinja2',
'pyyaml',
'six'
],
)