Skip to content

Commit dd39023

Browse files
authored
Provide setuptools files (truckersmp-cli#77)
1 parent 8ee1adc commit dd39023

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

Diff for: .gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
*.egg-info/
2+
build/
3+
dist/
14
truckersmp_cli/__pycache__/

Diff for: MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include LICENSE
2+
include RELEASE
3+
recursive-include truckersmp_cli *.py

Diff for: setup.cfg

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

Diff for: setup.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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()

0 commit comments

Comments
 (0)