-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (23 loc) · 897 Bytes
/
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
import configparser
import tomllib
from setuptools import setup, find_packages
with open("README.md", "r") as long_description_reader:
_long_description = long_description_reader.read()
setup(
name='raypyc',
version='0.1.8',
description='A python wrapper for raylib using ctypes',
long_description=_long_description,
long_description_content_type='text/markdown',
author='Dor Shapira',
license='MIT License',
author_email='[email protected]',
packages=['raypyc'],
url='https://github.com/sDos280/raylib-python-ctypes',
classifiers=['Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License'],
install_requires=['setuptools>=42', 'wheel'],
package_data={
'raypyc': ['defines/*', 'colors/*', 'enums/*', 'structures/*', 'reasings.py', '__init__.pyi', '*.json', 'libs/*']
},
include_package_data=True
)