wownero-python/setup.py

30 lines
991 B
Python
Raw Normal View History

2018-01-28 14:53:52 +00:00
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
version = __import__('monero').__version__
setup(
2018-02-13 19:37:29 +00:00
name = 'monero-python',
2018-01-28 14:53:52 +00:00
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(),
2018-02-13 19:37:29 +00:00
data_files = ['requirements.txt'],
2018-01-28 14:53:52 +00:00
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',
2018-01-28 20:17:44 +00:00
'License :: OSI Approved :: BSD License',
2018-01-28 14:53:52 +00:00
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords = 'monero cryptocurrency',
2018-01-30 08:43:08 +00:00
test_suite='tests',
2018-01-28 14:53:52 +00:00
)