forked from thexivn/RandomMapTogether
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (42 loc) · 1.61 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
50
import os
from setuptools import setup, find_packages
EXCLUDE_FROM_PACKAGES = [
'env*',
]
PKG = 'random_maps_together'
######
setup(
name=PKG,
version='0.0.4',
description='Simple pyplanet application to add RMC mode online',
long_description='',
keywords='maniaplanet, pyplanet, RMC, trackmania',
license='GNU General Public License v3 (GPLv3)',
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
extras_require={},
include_package_data=True,
long_description_content_type='text/markdown',
package_data={
'templates': ['*.xml', '*.Script.Txt']
},
author='thexivn',
author_email='[email protected]',
url='https://github.com/Argembarger/RandomMapTogether',
classifiers=[ # Please update this. Possibilities: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
],
zip_safe=False, install_requires=['pyplanet', 'requests']
)