-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 865 Bytes
/
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
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="DmxOscServer",
version="1.0.5",
description="A Python Lib to create a DMX compatible OSC server with handlers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://dmxoscserver.readthedocs.io/en/latest/",
author="Miniontoby",
keywords="dmx, osc, server",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.5",
install_requires=["python-osc"],
project_urls={
"Bug Reports": "https://github.com/Miniontoby/DmxOscServer/issues",
"Source": "https://github.com/Miniontoby/DmxOscServer",
},
)