-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (36 loc) · 1.02 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
44
import distutils.text_file
from pathlib import Path
from typing import List
from setuptools import setup
def get_version(filename):
import ast
version = None
with open(filename) as f:
for line in f:
if line.startswith("__version__"):
version = ast.parse(line).body[0].value.s
break
else:
raise ValueError("No version found in %r." % filename)
if version is None:
raise ValueError(filename)
return version
module = "pymarkdownreport"
package = "pymarkdownreport"
src = "pymarkdownreport"
version = get_version(filename=f"{module}/__init__.py")
setup(
name=package,
packages=[module],
version=version,
license= 'MIT',
author= 'Pietro Zullo',
url = 'https://github.com/pietrozullo/pymarkdownreport',
download_url = 'https://github.com/pietrozullo/pymarkdownreport/archive/refs/tags/v0.0.3.tar.gz',
zip_safe=False,
entry_points={
"console_scripts": [
]
},
python_requires=">=3.8",
)