forked from maethor/avatar-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 732 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='avatar-generator',
version='0.0.13',
author="Guillaume Subiron",
author_email="maethor+pip@subiron.org",
description="Generates default avatars from a given string (such as username).",
long_description=open('README.md').read(),
packages=find_packages(),
package_data={'': ['*.otf', 'data/*.otf']},
include_package_data=True,
install_requires=['pillow'],
url='http://github.com/maethor/avatar-generator',
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
],
license="WTFPL",
)