File tree 4 files changed +52
-0
lines changed
4 files changed +52
-0
lines changed Original file line number Diff line number Diff line change
1
+ * .egg-info /
2
+ build /
3
+ dist /
1
4
truckersmp_cli /__pycache__ /
Original file line number Diff line number Diff line change
1
+ include LICENSE
2
+ include RELEASE
3
+ recursive-include truckersmp_cli *.py
Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ name = truckersmp-cli
3
+ version = file: RELEASE
4
+ description = A simple launcher for TruckersMP to be used with Wine/Proton
5
+ long_description = file: README.md
6
+ long_description_content_type = text/markdown
7
+ url = https://github.com/lhark/truckersmp-cli
8
+ project_urls =
9
+ Bug Tracker = https://github.com/lhark/truckersmp-cli/issues
10
+ Source Code = https://github.com/lhark/truckersmp-cli
11
+ license = MIT
12
+ classifiers =
13
+ Development Status :: 3 - Alpha
14
+ Intended Audience :: End Users/Desktop
15
+ License :: OSI Approved :: MIT License
16
+ Programming Language :: Python
17
+ Programming Language :: Python :: 3
18
+ Programming Language :: Python :: 3 :: Only
19
+ Topic :: Games/Entertainment
20
+ Topic :: Games/Entertainment :: Simulation
21
+ platforms = x86_64 POSIX systems
22
+
23
+ [options]
24
+ python_requires = >=3.3
25
+ packages = truckersmp_cli
26
+ scripts = truckersmp-cli
27
+ zip_safe = False
28
+
29
+ [options.extras_require]
30
+ optional = setuptools; vdf
31
+
32
+ [options.package_data]
33
+ truckersmp_cli =
34
+ proton.json
35
+ truckersmp-cli.exe
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python3
2
+
3
+ """
4
+ truckersmp-cli installation script.
5
+
6
+ See setup.cfg for metadata and options.
7
+ """
8
+
9
+ import setuptools
10
+
11
+ setuptools .setup ()
You can’t perform that action at this time.
0 commit comments