-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 883 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 883 Bytes
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
import os
from setuptools import setup
def read(*paths):
"""Build a file path from paths and return the contents"""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='rocket_league_api',
version='0.0.1',
description="Documents how the Rocket League client communicates with Psyonix's servers",
long_description=read('.', 'README.md'),
url='https://github.com/e00E/Rocket-League-Api',
packages=['rocket_league_api'],
license='',
author='',
author_email='',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
]
)