mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-14 00:14:05 +09:00
Adding setup.py contents and README placeholder
This commit is contained in:
committed by
Piotr Lizonczyk
parent
7f0f6fb417
commit
b7b9e29c27
31
setup.py
31
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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user