-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 1011 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
32
33
34
35
36
37
38
39
40
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
settings = {
'name': 'blt',
'version': '0.2.1',
'description': 'blt - provides simple CLI superpowers.',
'long_description': open('README.md').read(),
'author': 'Dennis Coldwell',
'author_email': '[email protected]',
'url': 'https://github.com/dencold/blt/',
'packages': [
'blt',
'blt.test',
'blt.tools'
],
'install_requires': [
'clint==0.3.3',
'mock==1.0.1',
'pytest==2.5.1'
],
'license': 'BSD',
'classifiers': (
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'
),
'entry_points': {
'console_scripts': [
'blt = blt.main:main'
]
}
}
setup(**settings)