Skip to content

Commit dd58a66

Browse files
author
Steve Ivy
committed
Add a proper setup.py so that the app is installable.
1 parent df0884e commit dd58a66

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#/usr/bin/env python
2+
import os
3+
from setuptools import setup, find_packages
4+
5+
ROOT_DIR = os.path.dirname(__file__)
6+
SOURCE_DIR = os.path.join(ROOT_DIR)
7+
8+
setup(
9+
name = "django-registration-invitationcode-backend",
10+
description = "Invitation code backend for Django-Registration",
11+
author = "Grzegorz Bialy, Steve Ivy",
12+
13+
url = "https://github.com/elcodo/django-registration-invitationcode-backend",
14+
version = "0.0.1",
15+
packages = find_packages(),
16+
zip_safe = False,
17+
include_package_data=True,
18+
classifiers = [
19+
"Programming Language :: Python",
20+
"License :: OSI Approved :: MIT License",
21+
"Operating System :: OS Independent",
22+
"Development Status :: 4 - Beta",
23+
"Environment :: Web Environment",
24+
"Framework :: Django",
25+
"Intended Audience :: Developers",
26+
"Topic :: Software Development :: Libraries :: Python Modules",
27+
],
28+
)

0 commit comments

Comments
 (0)