forked from mwilliamson/stickytape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 779 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyducttape",
version="0.0.2",
description="Package, encrypt and obfuscate Python scripts",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Michael Williamson, Bintang Pradana Erlangga Putra",
author_email="[email protected], [email protected]",
url="https://github.com/bpradana/ducttape",
packages=["ducttape"],
install_requires=["astor", "PyCryptodome"],
python_requires=">=3.5",
license="BSD-2-Clause",
entry_points={
"console_scripts": [
"ducttape=ducttape.main:main",
],
},
)