-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.62 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.62 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
import setuptools
import os
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
version_file = os.path.realpath(os.path.join(os.path.dirname(__file__), "underautomation", "yaskawa", "lib", "version.txt"))
with open(version_file, "r", encoding="utf-8") as fh:
version = fh.read().strip()
setuptools.setup(
name="UnderAutomation.Yaskawa",
version=version,
author="UnderAutomation",
author_email="support@underautomation.com",
description="Quickly create applications that communicate with your Yaskawa robots",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://underautomation.com/yaskawa",
project_urls={
"Documentation": "https://underautomation.com/yaskawa/documentation/get-started-python",
"Source": "https://github.com/underautomation/Yaskawa.py",
},
license="Commercial",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
],
packages=setuptools.find_packages(include=["underautomation", "underautomation.*"]),
python_requires=">=3.7",
install_requires=[
"pythonnet==3.0.5",
],
include_package_data=True,
package_data={
"underautomation": [
"yaskawa/lib/*.dll",
"yaskawa/lib/*.txt",
],
},
)