-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 867 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 867 Bytes
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
requirements = []
with open(path.join(here, "requirements.txt"), "r") as infile:
requirements = [line for line in infile.read().split("\n") if line]
setup(
name="vis_utils",
version="0.1",
description="Skeleton Animation Visualization Utilities.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eherr/vis_utils",
author="DFKI GmbH",
license='MIT',
keywords="skeleton animation visualization",
packages=find_packages(exclude=("examples",)),
python_requires=">=3.5.*, <4",
install_requires=requirements,
)