-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup_agpl.py
48 lines (44 loc) · 1.7 KB
/
setup_agpl.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
44
45
46
47
48
#!/usr/bin/env python3
import sys
import setuptools
import miss_hit_core.version
with open("README.md", "r") as fd:
long_description = fd.read()
setuptools.setup(
name="miss_hit",
version=miss_hit_core.version.VERSION,
author="Florian Schanda",
author_email="[email protected]",
description="Static analysis and other utilities for programs written in the MATLAB/Simulink and Octave languages.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://misshit.org",
project_urls={
"Bug Tracker" : "https://github.com/florianschanda/miss_hit/issues",
"Documentation" : "https://florianschanda.github.io/miss_hit/",
"Source Code" : "https://github.com/florianschanda/miss_hit",
},
license="GNU Affero General Public License v3",
packages=["miss_hit"],
install_requires=["miss_hit_core==%s" % miss_hit_core.version.VERSION],
python_requires=">=3.7, <4",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities"
],
entry_points={
"console_scripts": [
"mh_lint = miss_hit.mh_lint:main",
"mh_diff = miss_hit.mh_diff:main",
"mh_copyright = miss_hit.mh_copyright:main",
"mh_trace = miss_hit.mh_trace:main",
],
},
)