forked from smurfix/yapps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (25 loc) · 959 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
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
from yapps import __version__ as version
pkg_root = os.path.dirname(__file__)
# Error-handling here is to allow package to be built w/o README included
try: readme = open(os.path.join(pkg_root, 'README.txt')).read()
except IOError: readme = ''
setup(
name = 'Yapps2',
version = version,
author = 'Amit J. Patel, Matthias Urlichs',
author_email = '[email protected], [email protected]',
maintainer = 'Mike Kazantsev',
maintainer_email = '[email protected]',
license = 'MIT',
url = 'https://github.com/mk-fg/yapps',
description = 'Yet Another Python Parser System',
long_description = readme,
packages = find_packages(),
include_package_data = True,
package_data = {'': ['README.txt']},
exclude_package_data = {'': ['README.*']},
entry_points = dict(console_scripts=[
'yapps2 = yapps.cli_tool:main' ]) )