-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.32 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.32 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
from setuptools import setup, find_packages
setup(
name='sxtools', # SxTools!MANAGER
version='1.2.0',
license='GPLv3+',
description='SxTools!MANAGER helps you to manage your scene collections',
package_dir={'':'src'},
packages=find_packages(where='src'),
author='nschepsen',
author_email='schepsen@web.de',
url='https://github.com/nschepsen/sxtools',
keywords='library, video, tools',
entry_points={
'console_scripts': ['sxtools=sxtools.main:main']},
classifiers=[
'Development Status :: 4 - Beta'
'Environment :: Console',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
'Natural Language :: English',
'Natural Language :: German',
'Natural Language :: Italian',
'Natural Language :: Russian',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: SQL',
'Topic :: Desktop Environment',
'Topic :: Desktop Environment :: File Managers',
'Topic :: Home Automation',
'Topic :: Multimedia :: Video :: Display', 'Topic :: Utilities'
]
)
# SxTools!MANAGER helps you to manage collections according to your wishes