-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
30 lines (25 loc) · 848 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
26
27
28
29
30
from os import path
from setuptools import find_packages, setup
def read(fname):
this_directory = path.abspath(path.dirname(__file__))
return open(path.join(this_directory, fname), encoding="utf-8").read()
setup(
name="traktor-nml-utils",
version="3.2.0",
description="Utilities to read and write Traktor NML files",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="http://github.com/wolkenarchitekt/traktor-nml-utils",
author="Ingo Fischer",
author_email="[email protected]",
license="GPL",
packages=find_packages(exclude=("tests",)),
zip_safe=True,
python_requires=">=3.7.0",
install_requires=["xsdata==21.2"],
entry_points={
'console_scripts': [
'traktor-nml-utils = traktor_nml_utils.cli:cli',
],
},
)