-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 844 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='PyCPPExecuter',
version='1.0.0',
description="This is a module that uses python interface to execute the c/c++ programs and perform actions",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Jayakrishna112/PyCPPExecuter',
author="JayaKrishna",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'gcc-install = PyCPPExecuter:compiler_installer',
],
},
install_requires=[],
extras_require={
"dev": ["pytest>=7.0", "twine>=4.0"],
},
python_requires=">=3.10"
)