Skip to content

Commit

Permalink
version 0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitu210 committed Dec 12, 2019
1 parent cdc9092 commit 6c6ba31
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ logs/
celerybeat-schedule
celerybeat.pid
client_secret.json
dist/
opensource_job_portal.egg-info/
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include requirements.txt
recursive-include */templates *
File renamed without changes.
48 changes: 48 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import os
from setuptools import setup, find_packages

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

# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
PROJECT_NAME = 'opensource_job_portal'

data_files = []
for dirpath, dirnames, filenames in os.walk(PROJECT_NAME):
for i, dirname in enumerate(dirnames):
if dirname.startswith('.'):
del dirnames[i]
if '__init__.py' in filenames:
continue
elif filenames:
for f in filenames:
data_files.append(os.path.join(
dirpath[len(PROJECT_NAME) + 1:], f))

setup(
name='opensource-job-portal',
version='0.1.0',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
description='An opensourse Job Portal with Unlimited free job posting, Social Api authentication.',
long_description=README,
url='https://github.com/MicroPyramid/opensource-job-portal.git',
author='Micropyramid',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
],
)

0 comments on commit 6c6ba31

Please sign in to comment.