-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 804 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
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: IFM
"""
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='wall-e',
version='1.0.0',
author='Ismael Fernandez',
author_email='[email protected]',
packages=find_packages('.'),
include_package_data=True,
url='https://github.com/ismFerDev/Wall-e',
description='Clean your account AWS',
long_description=long_description,
license='GPLv2',
install_requires=open('requirements.txt').read().split(),
entry_points={
"console_scripts": ["wall-e = src.cli:main"]
},
classifiers=[]
)