-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 733 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
import re
from setuptools import setup,Extension
setup(name='extend-cpython',
version="0.0.1",
description='extend-cpython',
author="Neeky",
author_email="neeky@live.com",
maintainer='Neeky',
maintainer_email='neeky@live.com',
python_requires='>=3.6.*',
ext_modules = [Extension('plugins/maths',["src/maths.cpp"])],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8']
)