forked from freedomofpress/securedrop-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.43 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
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# The CSS file
package_resources = ["securedrop_client/resources/css/sdclient.css"]
# All other graphics used in the client
for name in os.listdir("./securedrop_client/resources/images/"):
package_resources.append(os.path.join("./securedrop_client/resources/images", name))
setuptools.setup(
name="securedrop-client",
version="0.8.0",
author="Freedom of the Press Foundation",
author_email="[email protected]",
description="SecureDrop Workstation client application",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPLv3+",
install_requires=["SQLALchemy", "alembic", "securedrop-sdk", "python-dateutil", "arrow"],
python_requires=">=3.5",
url="https://github.com/freedomofpress/securedrop-proxy",
packages=["securedrop_client", "securedrop_client.gui", "securedrop_client.resources"],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["sd-client = securedrop_client.app:run"]},
)