-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 995 Bytes
/
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
from pathlib import Path
from setuptools import setup, find_packages
README = None
if Path('README.md').exists():
with open('README.md','r') as f:
README = f.read()
st = """
Simple, expressive, pythonic datatypes for manipulating curves parameterized by keyframes and interpolators. The motivation for this library is to facilitate object-oriented parameterization of generative animations.
""".strip()
setup(
name='keyframed',
version='0.3.15',
author='David Marx',
long_description=README,
long_description_content_type='text/markdown',
short_description=st,
install_requires=[
'sortedcontainers',
'omegaconf',
'matplotlib',
#############
#'numpy',
#'torch'
],
extras_require={
'dev': [
'pytest',
'loguru'
]},
packages=find_packages(
where='src',
include=['keyframed*'],
),
package_dir = {"": "src"},
license='MIT',
)