-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.06 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
from setuptools import setup
with open('README.md', 'r') as f:
readme = f.read()
setup(
name='motionscene-merger',
version='2.4.1',
packages=['motionscene_merger'],
url='https://github.com/beatonma/motionscene-merger',
license='GNU General Public License v3.0',
author='Michael Beaton',
author_email='michael@beatonma.org',
description=(
'File injection tool for Android developers using MotionLayout. '
'Use scenemerge to reuse ConstraintSet/KeyFrameSet/etc definitions in '
'multiple MotionScenes via a templating system.'
),
long_description=readme,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'scenemerge=motionscene_merger.scenemerge:main'
]
},
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
python_requires='>=3.6', # May work in earlier versions but only actually tested on 3.8
)