-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
50 lines (43 loc) · 1.6 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('docs/history.rst') as history_file:
history = history_file.read()
with open('requirements.txt') as reqs_file:
requirements = reqs_file.read().splitlines()
proj_version = '0.3.0'
setup(
name='whoville',
version=proj_version,
description="Whoville: An opinionated auto-deployer for the Hortonworks Platform",
long_description=readme + '\n\n' + history,
author="Daniel Chaffelson",
author_email='chaffelson@gmail.com',
url='https://github.com/Chaffelson/whoville',
download_url='https://github.com/Chaffelson/whoville/archive/' + proj_version + '.tar.gz',
packages=find_packages(
include=['whoville']
),
include_package_data=True,
install_requires=requirements,
license="Apache Software License 2.0",
zip_safe=False,
keywords=['whoville', 'cloudbreak', 'api', 'wrapper'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: User Interfaces'
]
)