-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (36 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
from setuptools import setup
import ivydepparse
setup(name='ivydepparse',
version=ivydepparse.__version__,
install_requires=[],
description='Ivy Dependency Parser',
long_description=open('README.rst').read(),
keywords=['ivydepparse',
'ivy',
'dependency',
'dependencies',
'parser',
'xml',
'cmake'],
author='TT-GF Team',
author_email='[email protected]',
url='https://github.com/tt-gf/ivy-dependency-parser',
download_url='https://github.com/tt-gf/ivy-dependency-parser/tarball/'
+ ivydepparse.__version__,
license='public domain',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Software Distribution',
'Topic :: Text Processing :: Markup :: XML',
'Topic :: Utilities'],
packages=['ivydepparse'],
entry_points="""
[console_scripts]
ivydepparse = ivydepparse.ivydepparse:main
""")