Skip to content

Commit ca73562

Browse files
committed
Make a Python package
1 parent effaae6 commit ca73562

10 files changed

Lines changed: 701 additions & 0 deletions

File tree

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'tminterface',
4+
packages = ['tminterface'],
5+
version = '0.1',
6+
license='GPL3',
7+
description = 'A client for TMInterface, a TrackMania TAS tool',
8+
author = 'Adam Bieńkowski',
9+
author_email = 'donadigos159@gmail.com',
10+
url = 'https://github.com/donadigo/TMInterfaceClient',
11+
keywords = ['TMInterface', 'client', 'TrackMania'],
12+
install_requires=[
13+
'numpy',
14+
],
15+
classifiers=[
16+
'Development Status :: 4 - Beta',
17+
'Intended Audience :: Developers',
18+
'Topic :: Software Development :: Build Tools',
19+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
20+
'Programming Language :: Python :: 3',
21+
'Programming Language :: Python :: 3.4',
22+
'Programming Language :: Python :: 3.5',
23+
'Programming Language :: Python :: 3.6',
24+
],
25+
)

tminterface/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)