-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (44 loc) · 1.09 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
REQUIREMENTS = [
'argparse >= 1.3.0',
'requests >= 2.5.1'
]
REQUIREMENTS_TEST = [
'coverage',
'nose',
'mock >= 1.0.1',
'tox'
]
KEYWORDS = [
'deployment',
'tickets'
]
setup(
name='deploy-tix',
version='0.0.2',
description='Python scripts for creating deployment tickets in Bugzilla',
author='Richard Pappalardo',
author_email='[email protected]',
url='https://github.com/rpappalax/deploy-tix',
license="MIT",
tests_require=REQUIREMENTS_TEST,
install_requires=REQUIREMENTS,
keywords=KEYWORDS,
packages=['deploy_tix'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
entry_points={
'console_scripts': [
'ticket = deploy_tix.__main__:main'
]
}
)