From b7b9e29c272cadd8b0fa977cd7877f03a383e711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Lizo=C5=84czyk?= Date: Sat, 13 May 2017 19:16:14 +0200 Subject: [PATCH] Adding setup.py contents and README placeholder --- README.md | 2 ++ setup.py | 31 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..66888a1 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +Noise-python +============ diff --git a/setup.py b/setup.py index e69de29..a190e28 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,31 @@ +from setuptools import setup, find_packages +from codecs import open +from os import path + +here = path.abspath(path.dirname(__file__)) + +with open(path.join(here, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + +setup( + name='noise-python', + version='0.1.0', + description='A sample Python project', # TODO + long_description=long_description, + url='https://github.com/plizonczyk/', + author='Piotr Lizonczyk', + author_email='piotr.lizonczyk@gmail.com', + license='MIT', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Topic :: Security :: Cryptography', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ], + keywords='', # TODO + packages=find_packages(exclude=['contrib', 'docs', 'tests']), + install_requires=[], # TODO +)