-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (49 loc) · 1.68 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (49 loc) · 1.68 KB
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
52
53
54
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
here = os.path.abspath(os.path.dirname(__file__))
# put package test requirements here
requirements = [
"requests",
]
# put package test requirements here
test_requirements = []
setup(
name='stackhut-client',
version='0.1.1',
description="StackHut client-side Python library",
long_description=(read('README.rst') + '\n\n' +
read('AUTHORS.rst')),
license='Apache',
author="StackHut",
url='https://github.com/stackhut/client-python',
# download_url = 'https://github.com/stackhut/stackhut-tool/tarball/0.1.1'
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", ""]),
include_package_data=True,
install_requires=requirements,
zip_safe=False,
test_suite='tests',
tests_require=test_requirements,
keywords='stackhut',
platforms=['POSIX'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
# 'Private :: Do Not Upload', # hack to force invalid package for upload
],
)