This repository has been archived by the owner on Jun 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
executable file
·66 lines (59 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import ast
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.md').read()
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('clickable/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
requirements = [
'cookiecutter',
'requests',
'jsonschema',
]
setup(
name='clickable-ut',
version=version,
description='Compile, build, and deploy Ubuntu Touch click packages all from the command line.',
long_description=readme,
long_description_content_type='text/markdown',
author='Brian Douglass',
url='https://clickable-ut.dev/',
project_urls={
'Documentation': 'https://clickable-ut.dev/en/latest/',
'Source': 'https://gitlab.com/clickable/clickable',
'Bug Tracker': 'https://gitlab.com/clickable/clickable/-/issues',
},
packages=['clickable'],
include_package_data=True,
install_requires=requirements,
license='GPL3',
zip_safe=False,
keywords='click ubuntu touch ubports',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Code Generators',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'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',
],
entry_points={
'console_scripts': [
'clickable = clickable:main',
],
}
)