-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.67 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.67 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
# Publishing a new version:
#
# 1. Update the version tag in this file.
# 2. Remove the `dist/` and the `machetli.egg-info` directories
# 3. Run the following steps (needs `pip install build twine`):
#
# $ python3 -m build
# $ python3 -m twine upload dist/*
#
# 4. Enter the API token
from pathlib import Path
from setuptools import setup, find_packages
long_description = Path("README.rst").read_text(encoding="utf-8")
setup(
name="machetli",
version="0.12",
description="Locate bugs in your program",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Lucas Galery Käser",
author_email="lucas.galerykaeser@gmail.com",
url="https://github.com/aibasel/machetli",
license="GPL3+",
project_urls={
"Documentation": "https://machetli.readthedocs.io/",
},
classifiers=[
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
],
packages=find_packages(),
python_requires=">=3.7",
install_requires = ["questionary >= 2.1.0", "CT3 >= 3.4"],
include_package_data=True,
package_data={
"machetli": [
"templates/slurm-array-job.template",
"templates/interview/evaluator.py.tmpl",
"templates/interview/run.py.tmpl",
],
},
entry_points={
"console_scripts": [
"machetli = machetli.interview:main",
],
},
)