-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (32 loc) · 795 Bytes
/
setup.py
File metadata and controls
executable file
·39 lines (32 loc) · 795 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
# coding: utf8
import sys
from setuptools import setup
sys.path.insert(0, 'xart')
from xart import __version__
VERSION = __version__
sys.path.pop(0)
with open('README.rst') as fp:
README = fp.read()
setup(
name='xart',
version=VERSION,
description='generate art ascii texts',
long_description=README,
license='WTFPL',
author='xlzd',
author_email='i@xlzd.me',
classifiers=[
'Environment :: Console',
'Programming Language :: Python',
'Topic :: Text Processing :: Fonts',
],
url='https://github.com/xlzd/xart',
packages=['xart', 'xart.fonts'],
package_data={'xart.fonts': ['*.flf', '*.flc']},
entry_points={
'console_scripts': [
'xart = xart:main',
],
}
)