-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (28 loc) · 999 Bytes
/
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
import setuptools
_requires = [
'setuptools-scm',
'ebs-linuxnode-gui-kivy-core>=3.3.0',
# ebs Widgets
'kivy_garden.ebs.marquee>=3.1',
]
setuptools.setup(
name='ebs-linuxnode-gui-kivy-marquee',
url='https://github.com/ebs-universe/ebs-linuxnode-kivy-marquee',
author='Chintalagiri Shashank',
author_email='[email protected]',
description='Marquee for EBS Linuxnode Kivy Applications',
long_description='',
packages=setuptools.find_packages(),
install_requires=_requires,
setup_requires=['setuptools_scm'],
use_scm_version=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
],
)