forked from 0xmre/tuxart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 817 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as ld:
long_description = ld.read()
setup(name='tuxart',
version='3.2.1',
description='Tux generator for arbitrary kernel',
url='https://github.com/HommeOursPorc/tuxart',
author='Khaled Arsalane, Eliot Marie, Pierre Pouteau, Richard Faraji-Huon, Zakariae Boukhchen',
author_email='khaled.arsalane@etudiant.univ-rennes1.fr',
license='MIT',
scripts=['bin/tuxart'],
packages=['sources'],
package_dir={'':'tuxart'},
package_data={'sources':['sprays/*.svg']},
install_requires=[
'kconfiglib','cairosvg',
],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License 2.0",
])