-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (25 loc) · 942 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (25 loc) · 942 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
26
27
28
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read_(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name="tinyec",
version="0.4.1",
packages=["tinyec"],
author="Alex Moneger",
author_email="alexmgr+github@gmail.com",
description=(
"A tiny library to perform arithmetic operations on elliptic curves in pure python"),
license="GPLv3",
keywords=["elliptic", "curves", "crypto", "tls", "ssl", "ecdhe", "diffie-hellman"],
url="https://github.com/alexmgr/tinyec",
download_url="https://github.com/alexmgr/tinyec/archive/v0.4.0.tar.gz",
long_description=read_("README.md"),
long_description_content_type="text/markdown",
test_suite="nose.collector",
tests_require=["nose"],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3"])