-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 1.11 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
from setuptools import setup, find_packages
import os, sys
with open("README.md", "r", encoding = "UTF-8") as file:
long_desc = file.read()
with open("MANIFEST.in", "w") as file:
manifest = "include rsxpy/*\ninclude rsxpy/raid/*\n"
for i in os.listdir("rsxpy/include"):
manifest += f"include rsxpy/include/{i}/*\n"
file.write(manifest)
setup(
name = "rsxpy",
version = "0.1.1",
entry_points = {
"console_scripts": [
"rsxpy = rsxpy.core:main",
"raidpy = rsxpy.raidpy.core:main"
]
},
description = "An interpreted statically typed multi paradigm general purpose programming language designed for cross platform applications.",
long_description = long_desc,
long_description_content_type = "text/markdown",
url = "https://github.com/Aermoss/RSX",
author = "Yusuf Rencber",
author_email = "aermoss.0@gmail.com",
license = "MIT",
keywords = [],
packages = find_packages(),
include_package_data = True,
install_requires = ["raylib", "pyinstaller", "pysdl2", "pysdl2-dll"]
)