Skip to content

Commit

Permalink
Initial packaging of Gitem
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Oct 2, 2016
1 parent 85ee1fe commit 060d985
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
This project adheres to [CHANGELOG](http://keepachangelog.com/).

## [0.5.0] - 2016-10-02
### Added
- Initial release of Gitem
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
43 changes: 43 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
from setuptools import setup

import os

requirements_filename = os.path.join(
os.path.dirname(os.path.abspath(__file__)), 'requirements.txt')

with open(requirements_filename) as fd:
install_requires = [i.strip() for i in fd.readlines()]

requirements_dev_filename = os.path.join(
os.path.dirname(os.path.abspath(__file__)), 'requirements-dev.txt')

with open(requirements_dev_filename) as fd:
tests_require = [i.strip() for i in fd.readlines()]

setup(
name='gitem',
version='0.5.0',
description='A Github organization reconnaissance tool.',
url='https://github.com/mschwager/gitem',
packages=['gitem'],
package_dir={'': 'lib'},
license='GPLv3',
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires=install_requires,
tests_require=tests_require,
entry_points={
'console_scripts': [
'gitem = gitem.__main__:main',
],
},
)

0 comments on commit 060d985

Please sign in to comment.