-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 962 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 962 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'SimpleCodeCompresser',
version = '1.2.1',
description = 'Just a simple code compresser',
author = 'lemon-mint',
author_email = 'ice.lemons.mint@gmail.com',
url = 'https://github.com/lemon-mint/simplecompresser',
download_url = 'https://github.com/lemon-mint/simplecompresser',
install_requires = [],
packages = find_packages(exclude = []),
keywords = ['compress', 'codedeploy','deploy'],
python_requires = '>=3',
package_data = {},
zip_safe=False,
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)