-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
executable file
·52 lines (45 loc) · 1.32 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
47
48
49
50
51
52
from setuptools import find_packages, setup
from setuptools.command.install import install
from storyscript.version import version
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Compilers'
]
requirements = [
'click==6.7',
'lark-parser>=0.5.4'
]
extras = [
'sphinx',
'guzzle-sphinx-theme'
]
setup(name='storyscript',
version=version,
description='',
long_description='',
classifiers=classifiers,
download_url='https://github.com/asyncy/storyscript/archive/master.zip',
keywords='',
author='Asyncy',
author_email='[email protected]',
url='http://storyscript.org',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=requirements,
extras_require={
'docs': extras
},
entry_points={
'console_scripts': ['storyscript=storyscript.cli:Cli.main']
})