-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.4 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
38
39
40
41
42
#!/usr/bin/env python
import os
from setuptools import setup
base = os.path.dirname(os.path.abspath(__file__))
VERSION = open(os.path.join(base, 'version.txt')).read()[:-1]
pkg_dir = os.path.join(base, 'genericparser')
pkg_name = 'genericparser'
requires = ['networkx==2.4', 'pydotplus', 'pydot', 'lark-parser==0.5.6']
setup(
name='genericparser',
version=VERSION,
description='Python Generic Parser',
long_description=open(os.path.join(base, "README.md")).read(),
author='Jesus Domenech',
author_email='jdomenec@ucm.es',
url='https://github.com/jesusjda/pyParser',
download_url='https://github.com/jesusjda/pyParser/archive/{}.tar.gz'.format(VERSION),
license='GPL v3',
platforms=['any'],
packages=[pkg_name],
package_dir={pkg_name: pkg_dir},
package_data={pkg_name: ['*.py', 'bin/*']},
install_requires=requires,
dependency_links=[],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Operating System :: Unix",
"Intended Audience :: Science/Research",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords=['parser', 'generic parsing', 'control flow graph'],
)