-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (35 loc) · 977 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
33
34
35
36
37
38
39
from setuptools import setup
setup(
name="gopygo",
packages=["gopygo"],
version="0.3.2",
author="M. Mert Yildiran",
author_email="[email protected]",
url="http://github.com/up9inc/gopygo",
description="Pure Python Go parser, AST and unparser library",
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
],
long_description="""\
========
gopygo
========
gopygo is a Go programming language parser written in Python.
AST library based on original go/ast package https://golang.org/pkg/go/ast/
""",
zip_safe=False,
install_requires=['sly'],
extras_require={
'dev': [
'flake8',
'pytest',
'coverage',
'codecov'
]
},
)