forked from florianschanda/miss_hit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_gpl.py
48 lines (44 loc) · 1.62 KB
/
setup_gpl.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_core",
version=miss_hit_core.version.VERSION,
author="Florian Schanda",
author_email="[email protected]",
description="Code formatting and code metrics 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 General Public License v3",
packages=["miss_hit_core"],
python_requires=">=3.6, <4",
package_data = {
"miss_hit_core": ["resources/*.css", "resources/assets/*"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"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_style = miss_hit_core.mh_style:main",
"mh_metric = miss_hit_core.mh_metric:main",
],
},
)