forked from an2deg/pyraml-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 854 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
from setuptools import setup
setup(
name='pyraml-parser',
version='0.1.1',
author='Andrii Degtiarov',
author_email='andrew.degtiariov@gmail.com',
packages=['pyraml'],
url='https://github.com/an2deg/pyraml-parser',
license='MIT',
description='Python parser for RAML.',
long_description=open('README.md').read(),
install_requires=[
'lxml==3.4.2',
'setuptools',
'PyYAML>=3.10',
'importhelpers>=0.2'
],
tests_require=['nose>=1.3.0'],
zip_safe=True,
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
)