Adding setup.py contents and README placeholder

This commit is contained in:
Piotr Lizończyk
2017-05-13 19:16:14 +02:00
committed by Piotr Lizonczyk
parent 7f0f6fb417
commit b7b9e29c27
2 changed files with 33 additions and 0 deletions

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
Noise-python
============

View File

@@ -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
)