-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (26 loc) · 984 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
from setuptools import setup
import vulcan.meta_builder
setup(
name="vulcan-builder",
version=vulcan.meta_builder.__version__,
author="Peter Salnikov",
author_email="[email protected]",
url=vulcan.meta_builder.__website__,
packages=["vulcan", "vulcan.builder"],
entry_points={'console_scripts': ['vb=vulcan.builder:main']},
install_requires=['sh>=1,<2'],
license="MIT License",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Build Tools'
],
keywords=['devops', 'build tool'],
description="Lightweight Python Build Tool.",
long_description=open("README.rst").read()+"\n"+open("CHANGES.rst").read()
)