-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
34 lines (33 loc) · 1.29 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
#!/usr/bin/env python
# encoding: utf-8
# python setup.py sdist upload -r pypi
from setuptools import setup
setup(name="tailor",
version='0.0.2',
description='cross platform photo booth',
author='Leif Theden',
author_email='[email protected]',
packages=['tailor'],
install_requires=['kivy',
'shutter',
'pygame'],
license="LGPLv3",
long_description='https://github.com/bitcraft/tailor',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: Android",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera"
],
)