This repository was archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (63 loc) · 1.79 KB
/
setup.py
File metadata and controls
72 lines (63 loc) · 1.79 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
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
67
68
69
70
71
72
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of tilda_wrapper_api.
# https://github.com/ozeranskiy/tilda_wrapper_api
# Licensed under the MIT license:
# http://www.opensource.org/licenses/MIT-license
# Copyright (c) 2019, Sergey Ozeranskiy <sergey.ozeranskiy@gmail.com>
# Standard libraries
import io
# Third party libraries
from setuptools import find_packages, setup
# Project
from tilda_wrapper_api import __author__, __version__
requires = [
'requests',
'dataclasses-json',
]
tests_require = [
'isort',
'mock',
'nose',
'requests_mock',
'coverage',
'tox',
'sphinx',
'sphinx_rtd_theme',
'bump2version',
'python-coveralls',
]
with io.open('README.md', encoding='utf8') as f:
long_description = f.read()
setup(
name='tilda_wrapper_api',
version=__version__,
description='A python implementation of the Tilda API',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='tilda api',
author='Sergey Ozeranskiy',
author_email=__author__,
url='https://github.com/ozeranskiy/tilda_wrapper_api',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=requires,
tests_require=tests_require,
extras_require={},
entry_points={
'console_scripts': [
# add cli scripts here in this form:
# 'tilda_wrapper_api=tilda_wrapper_api.cli:main',
],
},
)