This repository was archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 1.28 KB
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
37
38
"""
Describe the import-ready package distro to the Distutils, per the following:
https://docs.python.org/3/distutils/setupscript.html
"""
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='import-ready',
version='0.12.0',
description='A simple importable Python package',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://gitlab.com/dave.k.smith/import-ready',
author='Dave Smith',
author_email='dave.k.smith@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
],
keywords=('import package huntsville havoc testpypi travisci pytest '
'codecov codacy'),
packages=find_packages(),
license='MIT',
zip_safe=False,
install_requires=['pytest'],
)