You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
559 B
19 lines
559 B
from setuptools import setup, find_packages
|
|
|
|
with open("requirements.txt") as f:
|
|
install_requires = f.read().strip().split("\n")
|
|
|
|
# get version from __version__ variable in smart_service/__init__.py
|
|
from smart_service import __version__ as version
|
|
|
|
setup(
|
|
name="smart_service",
|
|
version=version,
|
|
description="Mahindra Smart Service (Formarly: Guided Repair Manual)",
|
|
author="Hard n Soft Technologies Pvt Ltd",
|
|
author_email="siva@hnsonline.com",
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=install_requires
|
|
)
|
|
|