-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.12 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
from setuptools import setup, find_packages
import os
with open('./requirement.txt') as f:
required = f.read().splitlines()
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.6'
]
setup(
name='JSJumble',
version='1.0.4',
description='Tool for obfuscating, compressing Javascript, and collecting static files.',
long_description=open('pypi.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description_content_type='text/markdown',
url='https://github.com/GoodDay360/JSJumble',
author='GoodDay360',
author_email='[email protected]',
license='GNU General Public License (GPL)',
classifiers=classifiers,
keywords=['JSJumble','library','module','javascript','compress','obfuscator','obfuscate','static','collect','server'],
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=required,
)