This repository was archived by the owner on May 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.3 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
47
"""setuptools configuration.
This defines the packaging metadata.
"""
import glob
import os
import setuptools # type: ignore
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
DATAFILES = [('share/man/man1',
[f for f in glob.glob(os.path.join('man', '*'))])]
setuptools.setup(
name="assync",
version="0.1.0",
author="Nobody",
author_email="no@one.home",
description="A small example package",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/bobsh/assync",
packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
entry_points={
'console_scripts': [
'asstool = assync.cli:cli',
],
},
keywords=['nats'],
install_requires=[
"asyncio-nats-streaming==0.4.0",
"click==7.0",
"protobuf==3.8.0",
],
data_files=DATAFILES,
)