-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.06 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.06 KB
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
import setuptools
VERSION = "0.0.1" # PEP-440
NAME = "TruckersMP-async"
INSTALL_REQUIRES = [
"aiohttp",
]
setuptools.setup(
name=NAME,
version=VERSION,
description="An asynchronous TruckersMP API wrapper for grabbing data.",
url="https://github.com/RainzDev/TruckersMP.py/",
project_urls={
"Source Code": "https://github.com/RainzDev/TruckersMP.py/",
},
author="Jess",
author_email="jessrblx16@gmail.com",
license="MIT License",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
],
# Snowpark requires Python 3.8
python_requires=">=3.8",
# Requirements
install_requires=INSTALL_REQUIRES,
packages=["TruckersMP-async"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)