-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
55 lines (51 loc) · 1.88 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
50
51
52
53
54
55
from setuptools import setup
import sys, os
__url__ = 'https://github.com/olucurious/AppFramer'
__version__ = '1.0.2'
if sys.argv[-1] == 'publish':
os.system("git tag -a %s -m 'v%s'" % (__version__, __version__))
os.system("python setup.py sdist bdist_wheel upload -r pypi")
os.system("git push --tags")
sys.exit()
setup(
name="appframer",
version=__version__,
description="AppFramer helps to put your app screenshots in beautiful device frames with annotations by running a simple command.",
url=__url__,
author="Emmanuel Adegbite",
author_email="[email protected]",
license='MIT License',
packages=["appframer"],
entry_points="""
[console_scripts]
appframer = appframer.app:main
""",
install_requires=[
'Pillow',
'six>=1.10.0',
],
package_data={'appframer': ['fonts/*', 'devices/*']},
include_package_data=True,
zip_safe=False,
keywords='ios, android, screenshot, app frame, screenshot framer, itunes assets, googleplay assets',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)