-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·35 lines (33 loc) · 1.07 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
import setuptools
from src.synapse_uploader._version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="synapse-uploader",
version=__version__,
author="Patrick Stout",
author_email="[email protected]",
license="Apache2",
description="Utility to upload a directory and files to Synapse.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ki-tools/synapse_uploader",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
classifiers=(
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
entry_points={
'console_scripts': [
"synapse-uploader = synapse_uploader.cli:main"
]
},
install_requires=[
"synapseclient>=2.3.1,<3.0.0",
"synapsis>=0.0.6"
]
)