Skip to content

Commit 1cd14a7

Browse files
committedOct 20, 2012
update setup.py meta-data
1 parent 557b204 commit 1cd14a7

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ media
1414

1515
MANIFEST
1616
dist/*
17+
*.egg-info
1718

‎django_object_actions/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
""" A Django app for adding object tools to models """
12
__version__ = "0.0.1"
23

34

‎setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
from setuptools import find_packages
22
from distutils.core import setup
33

4-
import django_object_actions
4+
import django_object_actions as app
55

66
setup(
7-
name='INSERT NAME HERE',
8-
version=django_object_actions.__version__,
9-
# author
10-
# author_email
7+
name=app.__name__,
8+
version=app.__version__,
9+
author="Chris Chang",
10+
author_email="c@crccheck.com",
1111
# url
1212
packages=find_packages('.', exclude=('example_project*',)),
1313
include_package_data=True, # automatically include things from MANIFEST
1414
license='Apache License, Version 2.0',
15+
description=app.__doc__.strip(),
1516
long_description=open('README.md').read(),
1617
classifiers=[
1718
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)