-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
25 lines (24 loc) · 1004 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
from distutils.core import setup
from setuptools import find_packages
setup(
name = "Pycasia",
packages = find_packages(exclude=['contrib', 'docs', 'tests*']),
version = "v0.2",
description = "Pycasia is an open source library to work with the CASIA Chinese Handwriting library.",
author = "Lucas Kjaero-Zhang",
author_email = "[email protected]",
url = "https://github.com/lucaskjaero/pycasia",
keywords = ["handwriting", "Chinese", "CASIA"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Chinese (Simplified)",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
],
long_description=open('README.txt').read(),
install_requires=['numpy', 'Pillow', 'tqdm'],
)