Skip to content

Commit

Permalink
License set to public domain
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Löffler committed Apr 12, 2016
1 parent e614408 commit afa5f3a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 22 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
LICENSE not yet chosen.
This software is public domain. You can copy, modify, distribute and use the work, even for commercial purposes, all without asking permission.
40 changes: 19 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
#!/usr/bin/env python


from setuptools import setup

setup (name = 'numpy_groupies',
version = '0.9.1',
author = "@ml31415 and @d1manson",
description = "Optimised tools for group-indexing operations: aggregated sum and more.",
url="https://github.com/ml31415/numpy-groupies",
download_url="https://github.com/ml31415/numpy-groupies/archive/master.zip",
keywords=[ "accumarray", "aggregate", "groupby", "grouping", "indexing"],
packages=['numpy_groupies'],
tests_require=[''],
requires=[],
classifiers=['Development Status :: 4 - Beta', 'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)


setup(name='numpy_groupies',
version='0.9.1',
author="@ml31415 and @d1manson",
license='Public Domain',
description="Optimised tools for group-indexing operations: aggregated sum and more.",
url="https://github.com/ml31415/numpy-groupies",
download_url="https://github.com/ml31415/numpy-groupies/archive/master.zip",
keywords=[ "accumarray", "aggregate", "groupby", "grouping", "indexing"],
packages=['numpy_groupies'],
tests_require=[''],
requires=[],
classifiers=['Development Status :: 4 - Beta', 'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)

0 comments on commit afa5f3a

Please sign in to comment.