forked from alixander/PyScribe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (26 loc) · 851 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (26 loc) · 851 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
import os
from setuptools import setup
setup(
name = "pyscribe",
version = "0.1.4",
author = "Alexander Wang",
author_email = "alexanderw@berkeley.edu",
description = ("PyScribe makes print debugging easier and more efficient"),
license = "MIT",
keywords = "python pyscribe debug print",
url = "https://github.com/alixander/pyscribe",
download_url = "https://github.com/alixander/pyscribe/tarbell/0.1.4",
entry_points={
'console_scripts': [
'pyscribe = pyscribe.pyscribe:main',
],
},
packages=['pyscribe'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)