-
Notifications
You must be signed in to change notification settings - Fork 127
/
setup.py
33 lines (30 loc) · 1.36 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
from pathlib import Path
import setuptools
project_dir = Path(__file__).parent
with open("pypi_README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="intensio_obfuscator",
version="1.0.10.6",
author="hnfull",
author_email="[email protected]",
keywords=["python"],
description="Obfuscate a python code 2.x and 3.x ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Hnfull/Intensio-Obfuscator",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=project_dir.joinpath("requirements.txt").read_text().split("\n"),
license="MIT",
license_files=["LICENSE.txt"],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
python_requires=">=3.5",
entry_points={"console_scripts": ["intensio_obfuscator=intensio_obfuscator.intensio_obfuscator:main"]}
)