-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.05 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
33
34
35
36
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
# get install requirements from requirements.txt file
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as requirements:
install_requires = [
line.strip()
for line in requirements.readlines()
if not line.startswith('#')
]
setup(
name='juryou',
version='0.6.1',
description='Simple receipt generation library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SomosCodear/juryou',
author='codear',
author_email='desarrollo@codear.org',
include_package_data=True,
packages=find_packages(),
python_requires='>=3.7',
install_requires=install_requires,
entry_points={
'console_scripts': [
'juryou=juryou.cli:main',
],
},
)