-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
49 lines (43 loc) · 1.91 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
45
46
47
48
49
import os
from setuptools import setup, find_packages
NAME = "pymiere"
URL = 'https://github.com/qmasingarbe/{}'.format(NAME)
VERSION = "1.4.1"
with open(os.path.join(os.path.dirname(__file__), "README.md"), "r") as f:
long_description = f.read()
setup(name=NAME,
packages=find_packages(),
version=VERSION,
license='GNU',
description="Pythonic automations for Adobe Premiere Pro. Require the `Pymiere Link` extension for Premiere (installed separately).",
long_description=long_description,
long_description_content_type="text/markdown",
author='Quentin Masingarbe',
author_email='[email protected]',
url=URL,
keywords=[
NAME, "video", "Premiere", "Adobe", "Pymiere", "workflow", "automation", "Creative Cloud", "edit",
"editor", "editing", "prproj", "premiere pro"
],
install_requires=['requests>=2.25'],
# https://pypi.org/classifiers/
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Non-Linear Editor']
)
# Update VERSION (above) then run the following from the command prompt:
# python -m pip install setuptools wheel twine
# python setup.py sdist
# python -m twine upload --repository pypi dist/*
# To test:
# pip install pymiere