-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 853 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
28
29
30
31
import os
from setuptools import setup, Extension, find_packages
here = os.path.abspath(os.path.dirname(__file__))
module_gpirblast = Extension(
'gpirblast',
sources=[os.path.join(here, 'gpirblast', 'gpirblast.c')],
include_dirs=[
os.path.join(here, 'gpirblast'),
],
libraries=['pigpio'],
)
setup( # TODO fill the form
name='acremote',
version='0.1.0',
description='<description_placeholder>', # actual "Summary" field in egg-info
long_description='<long_description_placeholder>',
url='https://github.com/foreignmeloman',
author='foreignmeloman',
author_email='[email protected]',
license='MIT',
ext_modules=[module_gpirblast],
packages=find_packages(exclude=['tests', 'config_templates']),
python_requires='>=3.7',
install_requires=[
'telepot',
],
)