-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 1.22 KB
/
setup.py
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
#!/usr/bin/env python
#-*- coding:utf-8 -*-
# THE ORIGINAL WORK BELONGS TO HELLMAN
# https://github.com/hellman/libnum
# I've just ported it to python3 since the project looked inactive
from setuptools import setup
setup(name='libnum',
version='1.6.0',
author='jafar akhondali',
author_email='[email protected]',
license='MIT',
url='https://github.com/JafarAkhondali/python3-libnum',
description='python3 comptaible fork for libnum - Some number theoretic functions.',
long_description='python3 comptaible fork for libnum - Some number theoretic functions.',
packages=['libnum', 'libnum.chains'],
provides=['libnum'],
keywords='number prime gcd lcm modular invmod elliptic',
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Security :: Cryptography',
],
)