-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (32 loc) · 1.01 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
import setuptools
with open('README.rst') as stream:
readme = stream.read()
setuptools.setup(
name='racovimge',
version='0.9',
description='Random Cover Image Generator',
long_description=readme,
url='https://github.com/anqxyr/racovimge/',
author='anqxyr',
author_email='anqxyr@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python',
'Topic :: Multimedia',
'Topic :: Utilities'],
packages=['racovimge'],
package_data={'racovimge': [
'templates/*',
'fonts/*',
'colors.txt']},
scripts=['bin/racovimge'],
install_requires=['jinja2'],
)