forked from akapila011/Text-to-Image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (28 loc) · 1.09 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
#!/usr/bin/env python3
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="text_to_image",
version="0.0.5",
description="Convert your text to a grayscale image and back.",
long_description=long_description,
license="MIT",
url="https://github.com/akapila011/Text-to-Image",
author="Abhishek Kapila",
author_email="akapila011@gmail.com",
packages=["text_to_image"],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Security :: Cryptography",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3",
"Natural Language :: English"],
keywords="Graphics Encoding Decoding Stenography",
install_requires=["Pillow"],
python_requires='>=3'
)