-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.2 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
37
38
39
"""from setuptools import setup, find_packages
setup(
name='math_func', # Name of your package
version='0.1', # Version of your package
packages=find_packages(), # Automatically find and include all packages
install_requires=[], # List dependencies if any, e.g., ['numpy', 'requests']
author='Manuel Rao',
author_email='manumanolo178@gmail.com',
description='A short description of your module',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/matiszpek/Proyecto-4to', # URL to your project's homepage
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Minimum Python version requirement
)
"""
from setuptools import setup, Extension
import pybind11
ext_modules = [
Extension(
"precence_map_module",
["E:/projects/tecnico/proyecto ORT2024/Proyecto-4to/precence_map_module.cpp"],
include_dirs=[pybind11.get_include()],
language="c++"
),
]
setup(
name="precence_map_module",
ext_modules=ext_modules,
zip_safe=False,
)