-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (42 loc) · 1.26 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
'''Setup file for Pip package'''
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyExecutioner",
version="0.0.15",
author="dravog",
author_email="[email protected]",
description="A library to execute code",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/iCodeDevs/EXecutioner",
project_urls={
"Bug Tracker": "https://github.com/iCodeDevs/EXecutioner/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries",
"Development Status :: 3 - Alpha",
],
install_requires=[
"setuptools>=42",
"wheel",
"deepmerge>=0.1.0",
"PyYAML>=5.4.1",
"tabulate",
],
package_data={'': ['settings.yaml']},
package_dir={"": "."},
packages=[
"executioner",
"executioner.metric",
"executioner.metric.test",
"executioner.sandbox",
"executioner.sandbox.test",
"executioner.test",
],
python_requires=">=3.6",
)