-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·47 lines (39 loc) · 1.17 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
#!/usr/bin/env python3
from nuvolasdk import version
from setuptools import setup
import os
version.write_version(os.path.dirname(__file__))
LONG_DESC = """\
SDK for building Nuvola Apps scripts.
Documentation: https://github.com/tiliado/nuvolasdk
"""
pkg_data = []
for root, dirs, files in os.walk('nuvolasdk/data'):
pkg_data.extend(os.path.join(root, path)[10:] for path in files)
setup(
name = "nuvolasdk",
version = version.BASE_VERSION,
author = "Jiří Janoušek",
author_email = "[email protected]",
url = "https://github.com/tiliado/nuvolasdk",
description = "SDK for building Nuvola Apps scripts",
keywords = 'nuvola sdk development',
long_description = LONG_DESC,
license = 'BSD',
packages = ['nuvolasdk'],
package_data = {
'nuvolasdk': pkg_data
},
scripts = ['scripts/nuvolasdk'],
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only"
],
install_requires=[
'Pillow >= 4.3.0',
],
)