-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 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
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python3
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), 'r') as f:
long_description = f.read()
setup(
name='Bok',
version='0.1',
description='Bok programming language',
long_description=long_description,
author='Brian Svoboda',
license='GPLv3',
url='https://github.com/autocorr/bok',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Interpreters',
],
keywords='concatentive',
packages=['bok'],
install_requires=[
'termcolor',
'lark-parser',
'pygments',
'prompt_toolkit',
],
python_requires='>=3',
extras_require={
'test': ['pytest'],
},
package_data={
'bok': ['grammar.g'],
},
data_files=[
('lib', ['lib/std.bok', 'lib/examples.bok']),
],
)