-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (34 loc) · 1.04 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
import pathlib
from distutils.core import setup
long_description = pathlib.Path("README.rst").read_text()
setup(
name="constable",
packages=["constable"],
version="0.3.1",
license="MIT",
description="One decorator for lazy debugging. Inserts print statements directly into your AST.",
long_description=long_description,
long_description_content_type= 'text/x-rst',
author="Saurabh Pujari",
author_email="[email protected]",
url="https://github.com/saurabh0719/constable",
keywords=[
"debugger",
"decorator",
"tracker",
"state tracker",
"variable state",
"timer",
],
project_urls={
"Documentation": "https://github.com/saurabh0719/constable#README",
"Source": "https://github.com/saurabh0719/constable",
},
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
)