-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
35 lines (32 loc) · 1.13 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
#! /usr/bin/env python3.6
# -*- coding: utf-8 -*-
# (c) 2013 Marcos Dione <[email protected]>
# for licensing details see the file LICENSE.txt
from distutils.core import setup
import ayrton
setup (
name='ayrton',
version= ayrton.__version__,
description= 'a shell-like scripting language based on Python3.',
author= 'Marcos Dione',
author_email= '[email protected]',
url= 'https://github.com/StyXman/ayrton',
packages= [ 'ayrton', 'ayrton.parser', 'ayrton.parser.pyparser',
'ayrton.parser.astcompiler' ],
package_data= {
'ayrton.parser.pyparser': [ 'data/Grammar3.3' ],
},
scripts= [ 'bin/ayrton' ],
license= 'GPLv3',
classifiers= [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: System',
'Topic :: System :: Systems Administration',
],
)