-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 728 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name="codetree",
version="0.0.1",
description="A code tree builder",
author="Matthew Wedgwood",
author_email="matthew.wedgwood@ubuntu.com",
url="http://github.com/slank/codetree",
packages=find_packages(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers"],
# test_suite="tests",
entry_points={
"console_scripts": ['codetree = codetree.cli:main']},
include_package_data=False,
)