Skip to content

Commit

Permalink
Added package setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
tejasjadhav committed Mar 26, 2017
1 parent 3b50108 commit 9e4afbd
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include LICENSE
include README.md
Empty file removed __init__.py
Empty file.
Empty file removed migrations/__init__.py
Empty file.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import os

from setuptools import (
find_packages,
setup
)

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()

os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name='django-scheduler',
version='0.1',
packages=find_packages(),
include_package_data=True,
license='GPLv3',
description='Task scheduler for Django',
long_description=README,
author='Tejas Jadhav',
author_email='developer.tejas.jadhav@gmail.com',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)

0 comments on commit 9e4afbd

Please sign in to comment.