Skip to content

Commit 3d9a966

Browse files
committed
Add .gitignore, authors & tweak setup.py
1 parent 4693f0b commit 3d9a966

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
build/*
2+
dist/*
3+
*.egg
4+
*.pyc
5+

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Jerel Unruh <[email protected]>
2+
Greg Aker <[email protected]>
3+

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,18 @@ def get_readme():
1717
keywords="EmberJS Django REST",
1818
packages=find_packages(),
1919
install_requires=['django', 'djangorestframework' ],
20+
platforms=['any'],
21+
classifiers=[
22+
'Development Status :: 4 - Beta',
23+
'Framework :: Django',
24+
'Environment :: Web Environment',
25+
'License :: OSI Approved :: BSD License',
26+
'Intended Audience :: Developers',
27+
'Programming Language :: Python',
28+
'Programming Language :: Python :: 2.6',
29+
'Programming Language :: Python :: 2.7',
30+
'Topic :: Software Development :: Libraries :: Application Frameworks',
31+
'Topic :: Software Development :: Libraries :: Python Modules',
32+
]
2033
)
2134

0 commit comments

Comments
 (0)