-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (46 loc) · 1.65 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!usr/bin/env python3
import setuptools
long_description = open("README.md", encoding="utf-8").read()
setuptools.setup(
name="dsf-python",
version="3.6.0",
description="Python interface to access DuetSoftwareFramework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Duet3D/dsf-python",
author="Duet3D Ltd.",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
'python-dateutil'
],
keywords="Duet3D, DuetSoftwareFramework, DSF, dsf-python",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.7, <4",
extras_require={
"dev": [
"sphinx",
"tox",
],
},
project_urls={
"Duet3D Support": "https://forum.duet3d.com/",
"Bug Reports": "https://github.com/Duet3D/dsf-python/issues",
"Source": "https://github.com/Duet3D/dsf-python/",
},
)