-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 759 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 759 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 setuptools import setup, find_packages
setup(
name="pyxshcl",
version="0.0dev",
description="Python libraries/tools for XS HCL work.",
author="Sagnik Datta, Rob Dobson",
author_email=', '.join([
"sagnik.datta@citrix.com",
"rob.dobson@citrix.com",
]),
url="http://unspeicifed.yet",
packages=find_packages(),
install_requires=['jira', 'python-hwinfo', 'pymongo'],
tests_require=[
"nose",
],
test_suite="nose.collector",
entry_points={
'console_scripts': [
'acklogparser = xscertparser.cmd.acklogparser:main',
'processsubmission = xsautowf.cmd.processsubmission:main',
'hclanalysis = xsautowf.cmd.hclanalysis:main',
],
},
)