-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (31 loc) · 1.3 KB
/
setup.py
File metadata and controls
executable file
·35 lines (31 loc) · 1.3 KB
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
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, Extension
digibyte_scrypt_module = Extension('digibyte_scrypt',
sources = ['digibyte_scrypt/scryptmodule.c',
'digibyte_scrypt/scrypt.c'],
include_dirs=['./digibyte_scrypt/'])
long_description = open("README.md", "r").read()
setup (
maintainer = 'YoshiJaeger',
maintainer_email = 'pypi@jaeger.berlin',
url = 'https://pypi.org/project/digibyte_scrypt',
name = 'digibyte_scrypt',
version = '1.0.6',
description = 'Bindings for scrypt proof of work used by DigiByte',
long_description = long_description,
long_description_content_type = "text/markdown",
license = 'GPLv3',
include_package_data = True,
classifiers = [
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.10',
],
ext_modules = [digibyte_scrypt_module],
)