Skip to content

Commit

Permalink
changes to setup.py adding classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunter Senft-Grupp committed Mar 21, 2016
1 parent c5f7043 commit c3b3f8a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Search
-f FORM, --form FORM The format to display the results in. One of json,
json-pretty, log. Default: json


.. |Build Status| image:: https://travis-ci.org/huntcsg/bragly.svg?branch=master
:target: https://travis-ci.org/huntcsg/bragly
.. |Develop Build Status| image:: https://api.travis-ci.org/huntcsg/bragly.svg?branch=develop
Expand Down
15 changes: 14 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ def brag_dir():
with open('README.rst', 'r') as f:
readme = f.read()



setup(
name='bragly',
version='0.1.0',
Expand All @@ -24,7 +26,7 @@ def brag_dir():
'console_scripts': [
'brag = bragly.__main__:main',
'brag-util = bragly.__main__:util'
],
],
},
install_requires=[
'arrow',
Expand All @@ -37,4 +39,15 @@ def brag_dir():
'coverage',
],
test_suite='nose.collector',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)

0 comments on commit c3b3f8a

Please sign in to comment.