-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 904 Bytes
/
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
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(name="hv-uploader",
version="2017.09.27",
description="Uploads content to the Heavy Cloud Service (https://enzienaudio.com).",
long_description=readme(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities"
],
keywords="procedural audio uploader heavy enzien audio interactive games",
url="http://github.com/enzienaudio/hv-uploader",
author="Enzien Audio Ltd",
author_email="[email protected]",
license="MIT",
packages=["hv_uploader"],
install_requires=[
"requests",
],
entry_points={
"console_scripts": ["hv-uploader=hv_uploader:main"],
},
include_package_data=True,
zip_safe=True)