-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (52 loc) · 1.64 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='cocof',
version="1.2.2",
author='Astzweig UG(haftungsbeschränkt) & Co. KG',
author_email='[email protected]',
description='Consistent CLI config file modifier',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests*"]),
url='https://github.com/astzweig/cocof-py',
keywords=['toml', 'yaml', 'json', 'terminal', 'cli', 'edit'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: European Union Public Licence 1.2 '
'(EUPL 1.2)',
'Topic :: Database',
'Topic :: Terminals',
'Topic :: Text Processing',
'Topic :: Utilities',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
],
setup_requires=[
'flake8'
],
install_requires=[
# Assuming semantic versioning, prevent dependencies from breaking
# changes.
'click >= 7.0, < 8.0',
'tomlkit < 1.0',
'ruamel.yaml < 1.0',
'jsonpatch >= 1.23, < 2.0',
'biplist >= 1.0.3, < 2.0'
],
entry_points={
'console_scripts': [
'cocof = cocof.cocof:cli'
]
},
test_suite='tests',
tests_require='parameterized >=0.6.3',
dependency_links=[
'git+https://github.com/wolever/parameterized.git@4cd3b99b99604a1a01'
'836dd0466a54b1ca977114#egg=parameterized-0.6.3'
]
)