-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (37 loc) · 1.45 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
from setuptools import setup
import os, re
with open("README.md", "r") as fh:
long_description = fh.read()
def get_version() -> str:
"""Get __version__ from __init__.py file."""
version_file = os.path.join(os.path.dirname(__file__), "kivg", "__init__.py")
version_file_data = open(version_file, "rt", encoding="utf-8").read()
version_regex = r"(?<=^__version__ = ['\"])[^'\"]+(?=['\"]$)"
try:
version = re.findall(version_regex, version_file_data, re.M)[0]
return version
except IndexError:
raise ValueError(f"Unable to find version string in {version_file}.")
setup(
name="Kivg",
version=get_version(),
packages=["kivg"],
package_data={"kivg": ["*.py",],},
# metadata to display on PyPI
author="Shashi Ranjan",
author_email="shashiranjankv@gmail.com",
description="SVG path drawing and animation support in kivy application",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="svg svg-animations svg-path svg-images kivy-application kivy python",
url="https://github.com/shashi278/svg-anim-kivy",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent"
],
install_requires=["kivy>=2.0.0", "svg.path==4.1"],
python_requires=">=3.6",
)