-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
54 lines (49 loc) · 2.03 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
import os
from setuptools import setup, find_packages
version = 'dev'
dir_ = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(dir_, 'README.md')) as f:
long_description = f.read()
with open(os.path.join(dir_, 'requirements.txt')) as f:
install_requires = f.read()
setup(
name='iconify',
version=version,
description="An icon and image library for Qt that lets you use svg's "
"from common packs like FontAwesome, MateriallDesign etc.",
long_description=long_description,
long_description_content_type='text/markdown',
author='Jason Gilholme',
author_email='[email protected]',
license='GPLv3',
url='https://github.com/jasongilholme/iconify',
keywords=['Qt', 'icons', 'svg', 'PySide', 'PyQt'],
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
data_files=[('requirements', ['requirements.txt'])],
platforms=['OS-independent'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: User Interfaces',
],
entry_points={
'console_scripts': [
'iconify-browser=iconify.browser:run',
'iconify-fetch=iconify.fetch:fetch',
'iconify-fetch-font-awesome=iconify.fetch:FontAwesome.fetch',
'iconify-fetch-material-design=iconify.fetch:MaterialDesign.fetch',
'iconify-fetch-elusive=iconify.fetch:Elusive.fetch',
'iconify-fetch-dash=iconify.fetch:Dash.fetch',
'iconify-fetch-feather=iconify.fetch:Feather.fetch',
'iconify-fetch-google-emojis=iconify.fetch:GoogleEmojis.fetch',
'iconify-fetch-emojione-legacy=iconify.fetch:EmojioneLegacy.fetch',
],
}
)