-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (42 loc) · 2.06 KB
/
setup.py
File metadata and controls
49 lines (42 loc) · 2.06 KB
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 pathlib
from setuptools import setup, find_packages
NAME = "AWSOM"
URL = f'https://github.com/pfython/{NAME}'
HERE = pathlib.Path(__file__).parent
VERSION = "0.14"
setup(name = NAME,
packages = find_packages(),
version = VERSION,
license='MIT',
description = 'Desktop automation tools for managing common tasks such as renaming media files and making backups, as well as interacting with Adobe Premiere Pro using the `Pymiere` library (Windows only).',
long_description=(HERE / "README.md").read_text(),
long_description_content_type="text/markdown",
author = 'Peter Fison',
author_email = 'peter@southwestlondon.tv',
url = URL,
download_url = f'{URL}/archive/{VERSION}.tar.gz',
keywords = [NAME, "search", "video", "audio", "media", "AWSOM", "TV", "content", "manage", "organise", "organize", "Premiere", "Adobe", "Pymiere", "YouTube", "metadata", "workflow", "automation", "Creative Cloud", "edit", "editor", "editing"],
install_requires=['cleverdict>1.7', 'pysimplegui'], # 'pymiere'],
# https://pypi.org/classifiers/
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia',
'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 testpypi dist/*
# Then:
# pip install -i https://test.pypi.org/simple/ AWSOM
# And when you're ready to go fully public:
# python -m twine upload --repository pypi dist/*