added setup py

This commit is contained in:
Richard Hartmann 2016-09-22 00:12:53 +02:00
parent 2f53870fe5
commit fe3b1754bf

35
setup.py Normal file
View file

@ -0,0 +1,35 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# To create a distribution package for pip or easy-install:
# python setup.py sdist
from setuptools import setup
author = u"Richard Hartmann"
authors = [author]
description = 'binary representation for simple data structured'
name = 'binfootprint'
version = '0.1'
if __name__ == "__main__":
setup(
name=name,
author=author,
author_email='richard.hartmann@tu-dresden.de',
url='https://github.com/cimatosa/binfootprint',
version=version,
packages=[name],
package_dir={name: name},
license="BSD (3 clause)",
description=description,
install_requires=["NumPy >= 1.5.1"],
keywords=["binary","footprint", "pickle", "key"],
classifiers= [
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers'],
platforms=['ALL']
)