Skip to content

Commit

Permalink
Initial shot at creating a distutils/pip compatible setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
petarmaric committed Oct 18, 2019
1 parent f4aa500 commit bf3080e
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -0,0 +1,4 @@
acs_extract_student_assignments 1.0.0 (October 18, 2019)
========================================================

* Initial release.
9 changes: 9 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,9 @@
include AUTHORS
include CHANGELOG
include LICENSE
include README.rst

include MANIFEST.in

recursive-exclude * __pycache__
recursive-exclude * *.py[co]
38 changes: 38 additions & 0 deletions setup.py
@@ -0,0 +1,38 @@
from setuptools import setup


setup(
name='acs_extract_student_assignments',
version='1.0.0',
url='https://github.com/petarmaric/acs_extract_student_assignments',
license='BSD',
author='Petar Maric',
author_email='petarmaric@uns.ac.rs',
description='Console app and Python API for extracting assignments from '\
'exam archives of our ACS students',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Education',
'Topic :: Utilities',
],
py_modules=[
'acs_extract_student_assignments',
],
entry_points={
'console_scripts': [
'acs_extract_student_assignments=acs_extract_student_assignments:main',
],
},
extras_require={
'dev': [
'pylint~=1.9',
],
},
)

0 comments on commit bf3080e

Please sign in to comment.