forked from yeago/question-stack
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
21 lines (19 loc) · 607 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (19 loc) · 607 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
fromsetuptoolsimportsetup, find_packages
setup(
name='question-stack',
version='0.1',
author='Steve Yeago',
author_email='subsume@gmail.com',
description='Managing stackoverflow-like-situations in Django',
url='http://github.com/subsume/question-stack',
packages=find_packages(),
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)