Skip to content
This repository was archived by the owner on Mar 9, 2024. It is now read-only.

Commit 218d3dc

Browse files
committed
Add packaging tools, clean up
1 parent 090ef0c commit 218d3dc

File tree

6 files changed

+46
-15
lines changed

6 files changed

+46
-15
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
docs/build/*
88
.venv
99
venv
10+
build/
11+
dist/
12+
*.egg-info/

LICENSE renamed to LICENSE.txt

File renamed without changes.

README.md

-14
This file was deleted.

README.rst

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Python Monero module
2+
====================
3+
4+
A comprehensive Python module for handling Monero cryptocurrency.
5+
6+
Copyrights
7+
----------
8+
9+
Released under the BSD 3-Clause License. See `LICENSE.txt`_.
10+
11+
(c) 2017 Michał Sałaban <[email protected]>
12+
13+
(c) 2016 The MoneroPy Developers (``monero/base58.py`` taken from `MoneroPy`_)
14+
15+
.. _`LICENSE.txt`: LICENSE.txt
16+
.. _`MoneroPy`: https://github.com/bigreddmachine/MoneroPy

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
pysha3
22
requests
3-

setup.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# -*- coding: utf-8 -*-
2+
from distutils.core import setup
3+
from setuptools import find_packages
4+
5+
version = __import__('monero').__version__
6+
7+
setup(
8+
name = 'monero',
9+
version = version,
10+
description = 'A comprehensive Python module for handling Monero cryptocurrency',
11+
url = 'https://github.com/emesik/monero-python/',
12+
long_description = open('README.rst').read(),
13+
install_requires = open('requirements.txt', 'r').read().splitlines(),
14+
packages = find_packages(),
15+
include_package_data = True,
16+
author = 'Michał Sałaban',
17+
author_email = '[email protected]',
18+
license = 'BSD-3-Clause',
19+
classifiers = [
20+
'Development Status :: 2 - Pre-Alpha',
21+
'Intended Audience :: Developers',
22+
'License :: OSI Approved :: BSD 3-Clause License',
23+
'Operating System :: OS Independent',
24+
'Programming Language :: Python',
25+
],
26+
keywords = 'monero cryptocurrency',
27+
)

0 commit comments

Comments
 (0)