-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.15 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.15 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import setuptools
setuptools.setup(
name="dropbox-notifier",
version="0.3.0",
author="João Magalhães",
author_email="joamag@gmail.com",
description="Dropbox Notifier",
license="Apache License, Version 2.0",
keywords="dropbox notifier api",
url="http://dropbox-notifier.joao.me",
zip_safe=False,
packages=[
"dropbox_notifier",
"dropbox_notifier.controllers",
"dropbox_notifier.models",
],
package_dir={"": os.path.normpath("src")},
package_data={"dropbox_notifier": ["templates/*.tpl", "templates/email/*.tpl"]},
install_requires=["appier", "appier-extras"],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)