-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 920 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 920 Bytes
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 distutils.core import setup
version = '0.1.27'
name = 'apache_dev_tool'
setup(
name=name,
packages=[name], # this must be the same as the name above
version=version,
description='Tool for apache contributors and committers.',
author='Rajat Khandelwal',
author_email='rajatgupta59@gmail.com',
url='https://github.com/prongs/apache-dev-tool', # use the URL to the github repo
download_url='https://github.com/prongs/apache-dev-tool/tarball/' + version, # I'll explain this in a second
keywords=['apache', 'open-source', 'reviewboard', 'jira', 'test-patch'], # arbitrary keywords
classifiers=[],
install_requires=[
"argparse>=1.3.0",
"jira>=0.47",
"beautifulsoup4>=4.3.2",
"RBTools>=0.7.4",
"requests>=2.7.0",
],
entry_points={
'console_scripts': ['apache-dev-tool=apache_dev_tool.apache_dev_tool:main'],
}
)