You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monero-python/setup.py

29 lines
974 B

# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
version = __import__('monero').__version__
setup(
name = 'monero-python',
version = version,
description = 'A comprehensive Python module for handling Monero cryptocurrency',
url = 'https://github.com/emesik/monero-python/',
long_description = open('README.rst').read(),
install_requires = open('requirements.txt', 'r').read().splitlines(),
packages = find_packages('.', exclude=['tests']),
include_package_data = True,
author = 'Michał Sałaban',
author_email = 'michal@salaban.info',
license = 'BSD-3-Clause',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords = 'monero cryptocurrency',
test_suite='tests',
)