-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (41 loc) · 1.6 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
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
install_requires=[
"dill==0.3.2",
"multiprocess==0.70.10",
"parse==1.15.0",
"pathos==0.2.6",
"pox==0.2.8",
"ppft==1.6.6.2",
"six==1.15.0",
],
name="powsolver",
version="0.1.7",
description="Proof of Work solver mainly for CTF challenges",
url="http://github.com/apogiatzis/powsolver",
author="Antreas Pogiatzis",
author_email="pogiatzis.c.a@gmail.com",
license="MIT",
packages=["powsolver"],
long_description=long_description,
long_description_content_type="text/markdown",
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security',
'Topic :: Security :: Cryptography'
],
)