-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
56 lines (53 loc) · 1.95 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
from setuptools import setup
#from setuptools import find_packages
with open("README.md") as f_readme:
long_description = f_readme.read()
setup(
name='durdraw',
version='0.28.0',
author='Sam Foster',
author_email='samfoster@gmail.com',
description='Animated Color ASCII and Unicode Art Editor',
long_description = long_description,
#py_modules=["PyGObject"],
url='https://github.com/cmang/durdraw',
license='ISC',
# package_dir={'': 'durdraw'},
packages=['durdraw'],
install_requires=['pillow', 'windows-curses;platform_system=="Windows"'],
include_package_data = True,
package_data = {'durdraw': ['help/*', 'charsets/*', 'themes/*', 'plugins/*', 'neofetch/*', 'durf/*']},
#package_data = {'durdraw': ["charsets/*"]},
data_files = [
# ('share/icons', ['data/durdraw.png']),
# ('share/applications', ['data/durdraw.desktop']),
# ('share/durdraw', ['examples/*.dur']),
('share/durdraw', ['examples/cm-doge.asc']),
('share/durdraw', ['examples/cm-doge.dur']),
('share/durdraw', ['examples/cm-eye.dur']),
('share/durdraw', ['examples/dopehax.dur']),
('share/durdraw', ['examples/mane.dur']),
('share/durdraw', ['examples/rain.dur']),
],
classifiers=[
'Environment :: Console :: Curses',
'Topic :: Artistic Software',
'Topic :: Text Editors',
'Topic :: Terminals',
'License :: OSI Approved :: ISC License (ISCL)',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities'
],
entry_points={
'console_scripts': [
'durdraw = durdraw.main:main',
'durfetch = durdraw.durfetch:main',
],
},
)