-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (44 loc) · 1.42 KB
/
setup.py
File metadata and controls
51 lines (44 loc) · 1.42 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
48
49
50
51
from setuptools import setup, find_packages
setup(
name="Tapri",
version="1.0.0",
author="Soumyajit Deb",
author_email="debsoumyajit100@gmail.com",
description="Async chat server with ordered message delivery",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/hyp3r5pace/tapri",
# automatically find packages
packages=find_packages(),
# no runtime dependencies (only uses standard library)
install_require = [],
# Development dependencies
extras_require = {
"dev": [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
],
},
# Python version requirement
python_requires=">=3.9",
# Create command-line tools
entry_points={
"console_scripts": [
"tapri-server=server.server:main",
"tapri-client=client.client:main",
],
},
# Project classification
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Communications :: Chat",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)