Making the Python 3 package pip-installable
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -94,3 +94,6 @@ out/
|
||||
#################
|
||||
Docs/~$Capability Matrix.xlsx
|
||||
*.xpl
|
||||
*.egg-info
|
||||
build
|
||||
dist
|
||||
|
||||
12
setup.py
Executable file
12
setup.py
Executable file
@@ -0,0 +1,12 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
setup(
|
||||
name="xplaneconnect",
|
||||
version="1.0.0",
|
||||
python_requires=">=3",
|
||||
packages=find_packages("Python3/src"),
|
||||
package_dir={"": "Python3/src"},
|
||||
description="XPlaneConnect (XPC) facilitates communication to and from the XPCPlugin.",
|
||||
url="https://github.com/nasa/XPlaneConnect/",
|
||||
)
|
||||
Reference in New Issue
Block a user