-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 774 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 774 Bytes
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
# read the contents of your README file
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='jbang',
version='0.8.0',
description='Python for JBang - Java Script in your Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://jbang.dev',
author='JBang Developers',
author_email='team@jbang.dev',
license='MIT',
packages=['jbang'],
zip_safe=False,
entry_points={
'console_scripts': [
'jbang-python=jbang:main',
],
},
extras_require={
'test': [
'pytest',
],
})