-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
26 lines (24 loc) · 818 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
25
26
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='avatar-generator',
version='0.4.2',
author="Guillaume Subiron",
author_email="[email protected]",
description="Generates default avatars from a given string (such as username).",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
readme="README.md",
packages=find_packages(),
package_data={'': ['*.otf', 'data/*.otf']},
include_package_data=True,
install_requires=['pillow>=9.2.0'],
url='http://github.com/maethor/avatar-generator',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
],
license="WTFPL",
)