-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
36 lines (35 loc) · 1 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
from setuptools import setup, find_packages
setup(
name='coreui-admin',
version='1.0',
description='The `coreui-admin` is the core ui command-line utility for administrative tasks',
url='https://gitlab.com/Luxoft/coreui-admin',
author='jryannel',
author_email='jbocklage-ryannel@luxoft.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Code Generators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
],
keywords='qt auto admin',
packages=find_packages(),
include_package_data=True,
install_requires=[
'colorlog',
'click',
'PyYAML',
'Jinja2',
'path.py',
'sh',
'wget',
],
entry_points={
'console_scripts': [
'coreui-admin = coreuiadmin.admin:app'
],
},
)