-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (34 loc) · 1.14 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
37
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "otrebuilder",
version = "1.5.6",
description = "A simple tool for OpenType standardization with multi-language support, powered by fontTools.",
author = "Pal3love",
author_email = "[email protected]",
maintainer = "Pal3love",
maintainer_email = "[email protected]",
url = "https://github.com/Pal3love/otRebuilder",
license = "MIT",
platforms = ["Any"],
packages = find_packages("Package"),
package_dir = {'': 'Package'},
include_package_data = True,
data_files = [('otRebuilder/Dep', ['Package/otRebuilder/Dep/Readme.txt'])],
install_requires = ['toml', 'fonttools', 'cu2qu', 'ufoLib'],
entry_points = {
'console_scripts': [
"otrebuild = otRebuilder.otrebuild:main"
]
},
zip_safe = True,
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7"
],
)