-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
executable file
·52 lines (48 loc) · 1.49 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
51
52
#!/usr/bin/env python3
# Author: Hologram <[email protected]>
#
# Copyright 2016 - Hologram (Konekt, Inc.)
#
# LICENSE: Distributed under the terms of the MIT License
#
longdesc = '''
This is a library for connecting to the Hologram Cloud
'''
import sys
try:
from setuptools import setup, find_packages
kw = {
}
except ImportError:
from distutils.core import setup
kw = {}
if sys.platform == 'darwin':
import setup_helper
setup_helper.install_custom_make_tarball()
setup(
name = 'hologram-python',
version = open('version.txt').read().split()[0],
description = 'Library for accessing Hologram Cloud at https://hologram.io',
long_description = longdesc,
author = 'Hologram',
author_email = '[email protected]',
url = 'https://github.com/hologram-io/hologram-python/',
packages = find_packages(),
include_package_data = True,
tests_require = open('requirements-test.txt').read().split(),
install_requires = open('requirements.txt').read().split(),
scripts = ['scripts/hologram'],
license = 'MIT',
platforms = 'Posix; MacOS X; Windows',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
],
**kw
)