Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sencer4898 authored Jan 15, 2023
1 parent 0031460 commit ef7e1d4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions package_project/setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
from setuptools import find_packages, setup

long_desc = """
This package is created for use of the ....."""

setup(
name='example777',
packages=find_packages(include=['example777']),
version='0.1.0',
description='Test package to demonstrate how to build packages',
long_description=long_desc,
long_description_content_type='text/x-rst',
author='M.O.',
license='MIT',
install_requires=[],
install_requires=[], # Dependencies
setup_requires=['pytest-runner'],
tests_require=['pytest==7.1.2'],
test_suite='tests'
)
)

0 comments on commit ef7e1d4

Please sign in to comment.