-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 690 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 690 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
from setuptools import setup, find_packages
setup(
name='tcc',
version="0.8",
description="Simple but effective comments app",
#long_description=open('readme').read(),
keywords='',
author='Peter van Kampen',
author_email='pterk@datatailors.com',
url='',
license='BSD',
packages=find_packages(),
# namespace_packages=[],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)