-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.29 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
40
41
42
43
from setuptools import setup, Extension
from Cython.Build import cythonize
with open("README.md", "r") as file:
long_description = file.read()
setup(
name="Pyewacket",
ext_modules=cythonize(
Extension(
name="Pyewacket",
sources=["Pyewacket.pyx"],
language=["c++"],
extra_compile_args=["-std=c++17"],
),
compiler_directives={
'embedsignature': True,
'language_level': 3,
},
),
author="Robert Sharp",
author_email="webmaster@sharpdesigndigital.com",
version="1.3.9",
description="Drop-in Replacement for the Python Random Module.",
long_description=long_description,
long_description_content_type="text/markdown",
license="Free for non-commercial use",
platforms=["Darwin", "Linux"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Programming Language :: Cython",
"Programming Language :: C++",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=[
"Pyewacket", "random module replacement",
],
python_requires='>=3.6',
)