-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0031460
commit ef7e1d4
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
) | ||
) |