-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 783 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/python3
# coding: utf-8
from setuptools import setup, find_packages, Extension
setup(name='pyltc',
version='2.0.0',
description='Python Litecoin library',
keywords='bitcoin',
url='https://github.com/bitaps-com/pyltc',
author='Alexsei Karpov',
author_email='admin@bitaps.com',
license='GPL-3.0',
packages=find_packages(),
install_requires=['pybtc'],
include_package_data=True,
package_data={
'pyltc': ['bip39_word_list/*.txt', 'test/*.txt'],
},
test_suite='tests',
ext_modules=[Extension("_scrypt",
["pyltc/_scrypt/_scrypt.c", "pyltc/_scrypt/_scryptmodule.c"],
include_dirs=["pyltc/_scrypt/"])],
zip_safe=False)