forked from project-ncl/pnc-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (32 loc) · 1015 Bytes
/
setup.py
File metadata and controls
32 lines (32 loc) · 1015 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
27
28
29
30
31
32
from setuptools import setup
from setuptools import find_packages
import os
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name='pnc-cli',
packages=find_packages(exclude=['test*']),
version='1.3.0',
description='CLI for the Project Newcastle build system',
author = 'Tom Hauser',
author_email = 'thauser@redhat.com',
url = 'https://github.com/project-ncl/pnc-cli',
download_url='https://github.com/project-ncl/pnc-cli/tarball/pypi-1.3.0',
keywords = ['PNC','REST'],
long_description=README,
install_requires=[
"argh >= 0.26.1",
"requests >= 2.4.3",
"certifi >= 2015.04.28",
"urllib3 >= 1.12",
"six >= 1.9.0",
"validators >=0.10",
"tzlocal >= 1.0",
],
tests_require=["pytest >= 2.0"],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
entry_points={'console_scripts': ['pnc = pnc_cli.pnc:main']}
)