-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,5 @@ logs/ | |
celerybeat-schedule | ||
celerybeat.pid | ||
client_secret.json | ||
dist/ | ||
opensource_job_portal.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include requirements.txt | ||
recursive-include */templates * |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=[ | ||
], | ||
) | ||
|