-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 813 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 813 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
26
27
28
import os
from setuptools import setup, find_packages
DIR_PATH = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(DIR_PATH, 'README.md'), encoding='utf8') as file:
long_description = file.read()
install_requires = [line.rstrip('\n') for line in open(
os.path.join(DIR_PATH, 'requirements.txt'))]
setup(
name='csv_report_processer',
version='1.0.0',
packages=find_packages(exclude=('tests', 'example')),
author='myslak71',
author_email='myslak@protonmail.com',
description='CSV report processor for Clearcode',
long_description=long_description,
install_requires=install_requires,
python_requires=">=3.7",
include_package_data=True,
entry_points={
'console_scripts': ['csv-report-processer=csv_report_processer.cli:main'],
}
)