-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (34 loc) · 1.13 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return "see README"
setup(
name="hypernova",
version="0.0.3",
author="Stephen Hurwitz",
author_email="ornj@stevehurwitz.com",
url="https://github.com/ornj/hypernova-python",
description="Python client for Hypernova, https://github.com/airbnb/hypernova",
long_description=read("readme.md"),
keywords="hypernova react javascript client",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
license="MIT License",
install_requires=["requests"],
packages=["hypernova", "hypernova.plugins"],
include_package_data=True,
)