-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (64 loc) · 2.48 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from setuptools import setup, find_packages
from scripts.__version__ import VERSION
NAME = 'gimp-color-palettes'
DESCRIPTION = 'A collection of color palettes for GIMP and Inkscape (but also Aseprite, Drawpile, Krita and MyPaint).'
KEYWORDS = 'GIMP,Inkscape,Aseprite,Drawpile,Krita,MyPaint,Colors,Color-Palette,Palette,Color-Scheme,Scheme,Design'
URL = 'https://github.com/Robert-96/gimp-color-palettes'
EMAIL = '[email protected]'
AUTHOR = 'Robert-96'
REQUIRES_PYTHON = '>=3.4.0'
LICENSE = 'MIT'
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/Robert-96/gimp-color-palettes/issues',
'Documentation': 'https://github.com/Robert-96/gimp-color-palettes/blob/master/README.md',
'Source': 'https://github.com/Robert-96/gimp-color-palettes'
}
with open('requirements.txt') as f:
REQUIRED = f.read().splitlines()
with open('README.md') as f:
README = f.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=README,
long_description_content_type='text/markdown',
license=LICENSE,
url=URL,
project_urls=PROJECT_URLS,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
setup_requires=REQUIRED,
install_requires=REQUIRED,
packages=find_packages(exclude=['tests']),
entry_points='''
[console_scripts]
gimp-color-palettes=scripts.cli:cli
''',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Cython',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: 3 :: Only',
'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',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: Markdown',
'Topic :: Utilities'
],
keywords=KEYWORDS,
)