-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 952 Bytes
/
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
from setuptools import setup, find_packages
VERSION = '2.2.1'
DESCRIPTION = 'ECC Library'
with open("README.md", "r") as f:
long_description = f.read()
# Setting up
setup(
name="elliptic_curves_fq",
version=VERSION,
author="Kaspar Hui",
author_email="<kaspar.hui@gmail.com>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
package_dir={"": "app"},
packages=find_packages(where="app"),
install_requires=[],
keywords=['python', 'ECC', 'Finite Fields'],
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
url='https://github.com/HaKa04/package-elliptic-curves-fq'
)