-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 951 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
from setuptools import setup
setup(
name='bobskater',
version='0.2.1',
description='AST based Obfuscator for Python',
long_description=open('README.md', 'r').read(),
long_description_content_type="text/markdown",
url='https://github.com/Cobertos/bobskater/',
author='Peter "Cobertos" Fornari',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Code Generators'
],
keywords='bobskater obfuscator obfuscation minifier mangler python',
packages=['bobskater'],
install_requires=['astunparse']
)