Skip to content

Commit

Permalink
I am trying anything at this point
Browse files Browse the repository at this point in the history
  • Loading branch information
Riprock committed Oct 16, 2024
1 parent 0ff8645 commit 872a1bf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Python Pacakage:

You will need to install the package in your environment:
```shell
pip install assetto-intellisense
pip install acintellisense
```

Now if your PyCharm project is accessible to this package,
Expand Down
2 changes: 2 additions & 0 deletions acintellisense/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__all__ = ["getDriverName", "getCarState", "testcall"]
from .core import getDriverName, getCarState, testcall
2 changes: 1 addition & 1 deletion src/ac/__init__.py → acintellisense/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#NOTE: Anywhere Type Any is listed- Thats just because I havent figured out the return type yet.
#NOTE: I am making assumtions based on examples. THis may not be 100% Accurate to each functions use
#NOTE: I have only documented the functions I have found code examples for or enough conversation context on forms/etc to tell me what it does
from typing import Any, Callable
from typing import Callable

__all__ = ["getDriverName", "getCarState", "testcall"]

Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
"""The setup module to create the package to be distriubted on pypi"""
from setuptools import setup, find_packages
from pathlib import Path

VERSION = '1.0.3'
VERSION = '1.0.4'
DESCRIPTION = 'Assetto Corsa intellisense stubs helper'
LONG_DESCRIPTION = """Assetto Corsa stubs library for "ac" object.
Helping intellisense and documentation when developing.
Currently only implemented whats in the known AC PDF for modding. Working on expanding in the future
"""
LONG_DESCRIPTION = Path('README.md').read_text(encoding='utf-8')
# Setting up
setup(
name='acintellisense',
Expand Down

0 comments on commit 872a1bf

Please sign in to comment.